1 頁 (共 1 頁)

[問題] 改首頁最後發表裡的欄位位置

發表於 : 2005-11-27 16:09
Roni
圖檔

想改劃圈的地方要去哪邊改呢...
index_body.tpl裡只有一個{catrow.forumrow.LAST_POST}參數\r
我想把畫圈的部分加幾個字..
例如由XXXX發表
要去哪邊改呢...

發表於 : 2005-11-27 16:42
slipper
搜尋一下

Last Post Topic on Index 1.4.0

論壇首頁的版面後面顯示最後主題名稱

發表於 : 2005-11-27 17:17
Roni
slipper 寫:搜尋一下

Last Post Topic on Index 1.4.0

論壇首頁的版面後面顯示最後主題名稱
不好意思...我是想問要改此欄裡的排版要去哪邊改呢...
不是問用哪個hack....
謝謝囉

發表於 : 2005-11-27 17:38
Kill
index.php裡頭找一下 :mrgreen:

發表於 : 2005-11-27 18:17
slipper
index.php

應該是這裡:

代碼: 選擇全部

if ( $forum_data[$j]['forum_last_post_id'] )
{
$last_post_time = create_date($board_config['default_dateformat'], $forum_data[$j]['post_time'], $board_config['board_timezone']);
$last_post = $last_post_time . '<br />';
$last_post .= ( $forum_data[$j]['user_id'] == ANONYMOUS ) ? ( ($forum_data[$j]['post_username'] != '' ) ? $forum_data[$j]['post_username'] . ' ' : $lang['Guest'] . ' ' ) : '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '='  . $forum_data[$j]['user_id']) . '">' . $forum_data[$j]['username'] . '</a> ';
$last_post .= '<a href="' . append_sid("viewtopic.$phpEx?"  . POST_POST_URL . '=' . $forum_data[$j]['forum_last_post_id']) . '#' . $forum_data[$j]['forum_last_post_id'] . '"><img src="' . $images['icon_latest_reply'] . '" border="0" alt="' . $lang['View_latest_post'] . '" title="' . $lang['View_latest_post'] . '" /></a>';
}

發表於 : 2005-11-27 20:25
Roni
謝謝兩位大大的指點....
解決囉... :mrgreen: