1、版块横排时添加版块图标的办法
打开 discuz.htm,找到“<th width="$cat[forumcolwidth]"{$forum[folder]}>”,在后面添加:“<a href="forumdisplay.php?fid=$forum[fid]">{$forum[icon]}</a>”
2、如果要同时去掉前面有无新帖图标,打开css.htm,找到:
.forumlist th { padding-left: 55px !important; }
.forumlist h2 em { color: {HIGHLIGHTLINK}; }
.forumlist tbody th { background-image: url({IMGDIR}/forum.gif); background-repeat: no-repeat; background-position: 13px 50%; }
.forumlist tbody th.new { background-image: url({IMGDIR}/forum_new.gif); }
删除之。
3、拿掉 最後發表 的方法?
discuz.htm 模板,拿掉這段:
<div style="color:{LIGHTTEXT}; overflow: hidden; height:1.5em; width: 100%">
<!–{if is_array($forum[’lastpost’])}–>
{lang forum_lastpost}: <a style="color:{LIGHTTEXT}" href="redirect.php?tid=$forum[lastpost][tid]&goto=lastpost#lastpost" title="$forum[lastpost][subject] ($forum[lastpost][dateline])">{echo cutstr($forum[lastpost][subject], 35)}</a>
({lang forum_lastpost_by} <!–{if $forum[’lastpost’][’author’]}–>$forum[’lastpost’][’author’])<!–{else}–>{lang anonymous}<!–{/if}–>
<!–{else}–>
{lang never}
<!–{/if}–>
</div>
4、当论坛板块横排时如何显示论坛介绍、版主、以及自定义板块图标。
打开discuz.htm文件查找
<th width="$cat[forumcolwidth]"{$forum[folder]}>
<h2><a href="forumdisplay.php?fid=$forum[fid]">$forum[name]</a><!–{if $forum[todayposts]}–><em> ({lang index_today}: $forum[todayposts])</em><!–{/if}–></h2>
<p>{lang forum_threads}: $forum[threads], {lang forum_posts}: $forum[posts]</p>
<p>{lang forum_lastpost}:
<!–{if is_array($forum[’lastpost’])}–>
<a href="redirect.php?tid=$forum[lastpost][tid]&goto=lastpost#lastpost">$forum[lastpost][dateline]</a>
{lang forum_lastpost_by} <!–{if $forum[’lastpost’][’author’]}–>$forum[’lastpost’][’author’]<!–{else}–>{lang anonymous}<!–{/if}–>
<!–{else}–>
{lang never}
<!–{/if}–>
</p>
</th>
修改为
<th width="$cat[forumcolwidth]"{$forum[folder]}>
<a href="forumdisplay.php?fid=$forum[fid]">{$forum[icon]}</a>
<h2><a href="forumdisplay.php?fid=$forum[fid]">$forum[name]</a><!–{if $forum[todayposts]}–><em> ({lang index_today}: $forum[todayposts])</em><!–{/if}–></h2>
<!–{if $forum[description]}–><p>$forum[description]</p><!–{/if}–>
<!–{if $forum[’moderators’]}–><!–{if $moddisplay == ‘flat’}–><p class="moderators">{lang forum_moderators}: $forum[moderators]</p><!–{else}–><span class="dropmenu" id="mod$forum[fid]" >{lang forum_moderators}</span><ul class="moderators popupmenu_popup" id="mod$forum[fid]_menu" style="display: none">$forum[moderators]</ul><!–{/if}–><!–{/if}–>
</th>

Recent Comments