本帖最后由 dicky57 于 2016-6-9 21:25 编辑
大家好
有站長有這樣的需求
就是想在帖內新增上一主題
和下一主題的按鈕
另一個方案在樓主樓層第二頁
分享給有需要的站長們^^
打開
template/default/forum/viewthread_node.htm 文件
如果後台有設置主題評價時
查找
- <a id="recommend_subtract" href="forum.php?mod=misc&action=recommend&do=subtract&tid=$_G[tid]&hash={FORMHASH}" {if $_G['uid']}onclick="ajaxmenu(this, 3000, 1, 0, '43', 'recommendupdate(-{$_G['group']['allowrecommend']})');return false;"{else} onclick="showWindow('login', this.href)"{/if} onmouseover="this.title = $('recommendv_subtract').innerHTML + ' {lang activity_member_unit}$_G[setting][recommendthread][subtracttext]'" title="{lang makebottomonce}"><i><img src="{IMGDIR}/rec_subtract.gif" alt="$_G['setting']['recommendthread'][subtracttext]" />$_G['setting']['recommendthread'][subtracttext]<span id="recommendv_subtract"{if !$_G['forum_thread']['recommend_sub']} style="display:none"{/if}>$_G[forum_thread][recommend_sub]</span></i></a>
复制代码
在這段代碼下方添加
- <a href="forum.php?mod=redirect&goto=nextoldset&tid=$_G[tid]" title="{lang last_thread}"><i><img src="{IMGDIR}/thread-prev.png" alt="{lang last_thread}" class="vm" />{lang last_thread}</i></a>
- <a href="forum.php?mod=redirect&goto=nextnewset&tid=$_G[tid]" title="{lang next_thread}"><i><img src="{IMGDIR}/thread-next.png" alt="{lang next_thread}" class="vm" />{lang next_thread}</i></a>
复制代码
如果後台沒有設置主題評價時
查找
- <a href="forum.php?mod=collection&action=edit&op=addthread&tid=$_G[tid]" id="k_collect" onclick="showWindow(this.id, this.href);return false;" onmouseover="this.title = $('collectionnumber').innerHTML + ' {lang activity_member_unit}{lang collection}'" title="{lang thread_collect}"><i><img src="{IMGDIR}/collection.png" alt="{lang thread_share}" />{lang collection}<span id="collectionnumber"{if !$post['releatcollectionnum']} style="display:none"{/if}>{$post['releatcollectionnum']}</span></i></a>
复制代码
在這段代碼下方添加
- <a href="forum.php?mod=redirect&goto=nextoldset&tid=$_G[tid]" title="{lang last_thread}"><i><img src="{IMGDIR}/thread-prev.png" alt="{lang last_thread}" class="vm" />{lang last_thread}</i></a>
- <a href="forum.php?mod=redirect&goto=nextnewset&tid=$_G[tid]" title="{lang next_thread}"><i><img src="{IMGDIR}/thread-next.png" alt="{lang next_thread}" class="vm" />{lang next_thread}</i></a>
复制代码
修改前請先備份
修改後記得更新緩存
修改前
修改後
主要是有設置和沒設置有差別
沒設置時如果查找的是有設置的代碼修改的話
修改後會沒效果
|