Demo

討論

保持飢餓,保持愚笨 (Stay hungry, stay foolish)。 史蒂夫·賈伯斯

公告

本網站已取消討論區的討論方式,如果您有問題請至LINE群行動條碼圖片網址,或Facebook社團

修改文章的最近更新日期顯示位置

  • tancheng
  • tancheng 的個人頭像 Topic Author
  • 訪客
  • 訪客
2008-10-27 17:26 #11872 來自 tancheng
tancheng created the topic: 修改文章的最近更新日期顯示位置
請問我想把文章的最近更新日期的顯示位置, 把原本在文章的下方, 改為放在文章的上面, 該如何修改?
謝謝 :cry:

Please 登入 to join the conversation.

  • tancheng
  • tancheng 的個人頭像 Topic Author
  • 訪客
  • 訪客
2008-10-28 14:40 #11887 來自 tancheng
tancheng replied the topic: 修改文章的最近更新日期顯示位置
在網上找了很久, 也找不著有關修改文章最近更新日期的顯示位置的文件, 我就只好靠一靠自己去改, 終於給我修改好了, 現在也給別人分享一下:

在JOOMLA的文章, 一般都把"建立日期", "最近更新", "郵件圖示", "列印圖示", ...等等都固定了, 一般在後台也無法修改這些固定位置。這次我說一說如何修改最近更新日期的顯示位置, 希望各位能從中也領悟其他"建立日期", "郵件圖示", "列印圖示", ...等等的修改顯示位置的方法。道理也是一樣的, 一理通百理明。

"最近更新日期"往往顯示在文章的下方, 如果要將其放到文章的上方就要從下面的文件動動手:

components\com_content\views\article\tmpl\default.php 和 components\com_content\views\frontpage\tmpl\default_item.php內的
<?php if ( intval($this->article->modified) !=0 && $this->params->get('show_modify_date')) : ?>
<tr>
<td colspan="2" class="modifydate">
<?php echo JText::_( 'Last Updated' ); ?> ( <?php echo JHTML::_('date', $this->article->modified, JText::_('DATE_FORMAT_LC2')); ?> )
</td>
</tr>
<?php endif; ?>

就是最近更新日期了, 最後 把這一段放在
<tr>
<td valign="top" colspan="2">
<?php if (isset ($this->article->toc)) : ?>
<?php echo $this->article->toc; ?>
<?php endif; ?>
<?php echo $this->article->text; ?>
</td>
</tr>



<tr>
<td valign="top" colspan="2">
<?php if (isset ($this->item->toc)) : ?>
<?php echo $this->item->toc; ?>
<?php endif; ?>
<?php echo $this->item->text; ?>
</td>
</tr>
之上就行了。 :grin:

Please 登入 to join the conversation.