1 頁 (共 1 頁)

[問題]有人用過這個外掛嗎?

發表於 : 2004-03-02 21:51
webspirit
有人用過 Top Topics on Index 這個外掛嗎?
我怎麼弄,它的最新發表、最強人氣、最受歡迎的 title 就是出不來
是因 phpBB 版本的關係嗎?
哪位大大能指導一下?
謝謝

發表於 : 2004-03-04 10:26
webspirit
很奇怪\r
title 的 {L_xxxx} 參數就是抓不到\r
火大了
直接把 index_body.tpl 的 title 定死\r
變成

代碼: 選擇全部

<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
  <tr> 
	<th>最新發表</th>
	<th>熱烈迴響</th>
	<th>回覆</th>
	<th>爭相欣賞</th>
	<th>閱讀</th>
  </tr>
  <!-- BEGIN topicrecentpopular -->
  <tr> 
	<td width="29%" class="row2" align="left" valign="middle"><span class="gensmall">{topicrecentpopular.TOPICSRECENT}</span></td>
	<td width="31%" class="row2" align="left" valign="middle"><span class="gensmall">{topicrecentpopular.TOPICSPOPULAR}</span></td>
	<td width="6%" class="row2" align="center" valign="middle"><span class="gensmall">{topicrecentpopular.TOPICSPOPULARC}</span></td>
	<td width="29%" class="row2" align="left" valign="middle"><span class="gensmall">{topicrecentpopular.TOPICSPOPULARVIEW}</span></td>
	<td width="6%" class="row2" align="center" valign="middle"><span class="gensmall">{topicrecentpopular.TOPICSPOPULARVIEWC}</span></td>
  </tr>
  <!-- END topicrecentpopular -->
</table>

 
結果就是這樣
會不會太愚蠢又暴力?(汗)

發表於 : 2004-03-04 11:06
godbless
她的說明裡面少了一個地方\r

代碼: 選擇全部

#
#-----[ FIND IN index.php ]-----------------------------------------
#
		'L_ONLINE_EXPLAIN' => $lang['Online_explain'], 

# 
#-----[ ADD AFTER ]------------------------------ 
# 
		'L_TOPICSRECENT' => $lang['TopicsRecent'], 
		'L_TOPICSPOPULAR' => $lang['TopicsPopular'], 
		'L_TOPICSPOPULARVIEW' => $lang['TopicsPopularView'], 
這樣應該就可以了!

發表於 : 2004-03-04 13:32
webspirit
感謝godbless大大 ^^