1 頁 (共 1 頁)

[問題] 整合式TOP5 v2的線上會員名單 (已解決)

發表於 : 2005-02-22 21:49
Loki
http://phpbb-tw.net/phpbb/viewtopic.php ... light=top5
敝站使用了這個外掛
不過在首頁上的線上會員無論是否有會員在\r
都會顯示沒有
如何要能夠顯示線上會員的話\r
請要應該要如何修改\r
謝謝

發表於 : 2005-02-22 22:02
bu
把版本升到 Intergred Toplist 1.0.3
就可以了

在官方認證外掛區有連結
把 php 部份換成新版的就可以了

發表於 : 2005-02-22 23:02
Loki
bu 寫:把版本升到 Intergred Toplist 1.0.3
就可以了

在官方認證外掛區有連結
把 php 部份換成新版的就可以了
原來還有這麼好用的外掛
連被限制的主題也能不會被看到\r
真的是太感謝了

發表於 : 2005-03-07 16:59
scc2001
bu 寫:把版本升到 Intergred Toplist 1.0.3
就可以了
請問哪裡有詳細的說明呢 :roll:

發表於 : 2005-03-07 17:02
小西
scc2001 寫:請問哪裡有詳細的說明呢 :roll:
http://www.phpbb-tw.net/phpbb/viewtopic.php?t=31959

發表於 : 2005-03-07 17:07
scc2001
小西 寫:
scc2001 寫:請問哪裡有詳細的說明呢 :roll:
http://www.phpbb-tw.net/phpbb/viewtopic.php?t=31959
那 TOP5 的外掛舊沒救了嗎??
下載這篇 適用於phpbb 2.0.11 版本嗎??
http://phpbb-tw.net/phpbb/viewtopic.php?t=5044

發表於 : 2005-03-07 19:30
小西
這2個是不同的外掛喔...bu大的是整合到首頁
OOHOO大的adv_top5是用frame

發表於 : 2005-03-08 21:17
FKL
安裝過之後,TOP 5 會顯示在最下方...

解決方法

先打開index_body.tpl

找到"<a href="{U_SEARCH_UNANSWERED}" class="gensmall">{L_SEARCH_UNANSWERED}</a></td>
</tr>
</table>

然後把這段 ADD AFTER
<table width="100%" height="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td valign="top">
<table width="100%" border="0" cellpadding="4" cellspacing="1" width="100%" class="forumline">
<tr>
<th align="center" class="thCornerL" width="20%">&nbsp;{L_FORUM}&nbsp;</th>
<th align="center" class="thTop" width="40%">&nbsp;{L_TOPICS}&nbsp;</th>
<th align="center" class="thTop" nowrap>&nbsp;&nbsp;{L_AUTHOR}&nbsp;&nbsp;</th>
<th align="center" class="thTop" nowrap>&nbsp;{L_REPLIES}&nbsp;</th>
<th align="center" class="thTop" nowrap>&nbsp;{L_VIEWS}&nbsp;</th>
<th align="center" class="thCornerR" nowrap>&nbsp;{L_LASTPOST}&nbsp;</th>
</tr>
<!-- BEGIN toprow -->
<tr>
<td class="row1" nowrap><span class="forumlink"><a href="{toprow.FORUM_URL}" target="_top" class="forumlink">{toprow.FORUM_NAME}</a></span></td>
<td class="row2" nowrap><span class="topictitle"><a href="{toprow.TOPIC_URL}" target="_top" class="topictitle">{toprow.TOPIC}</a></span></td>
<td class="row1" align="center" nowrap><span class="name">{toprow.POSTER_URL}</span></td>
<td class="row2" align="center" nowrap><span class="postdetails">{toprow.TOPIC_REPLIES}</span></td>
<td class="row1" align="center" nowrap><span class="postdetails">{toprow.TOPIC_VIEWS}</span></td>
<td class="row2" align="center" nowrap><span class="postdetails">{toprow.POST_TIME}<br />{toprow.REPLIER_URL}&nbsp;<a href="{toprow.LAST_POST_URL}" target="_top"><img src="{ICON_URL}" border="0" alt="{ICON_ALT}" /></a></span></td>
</tr>
<!-- END toprow -->
</table>
</td>
</tr>
</table>

他就會顯然在最上方了~~