一、把 最后发表时间 改成 最后发表主题+发表时间 形式显示。
修改方法:
找到 templates\风格文件夹\forum\discuz.htm 默认风格位置在:templates\default\forum\discuz.htm
打开 discuz.htm 文件,找到一下代码(381行):
<a href="forum.php?mod=redirect&tid=$forum[lastpost][tid]&goto=lastpost#lastpost">{lang forum_lastpost}: $forum[lastpost][dateline]</a>
改成:
<a href="forum.php?mod=redirect&tid=$forum[lastpost][tid]&goto=lastpost#lastpost" class="xi2"><!--{echo cutstr($forum[lastpost][subject], 26)}--></a> $forum[lastpost][dateline]
说明:26是显示的字数,$forum[lastpost][dateline] 代码是显示发表时间。
注意:discuz.htm 文件中修改278行代码是没用的,那个是默认情况下展示效果才有用,此时论坛首页下级子版块横排排版,修改成功后更新缓存。
二、在 主题/帖数/最后发表时间 后面增加 版块简介。
同样修改 discuz.htm 文件,查找以下代码(370行):
<!--{if empty($forum[redirect])}--><dd><em>{lang forum_threads}: <!--{echo dnumber($forum
[threads])}--></em>, <em>{lang forum_posts}: <!--{echo dnumber($forum[posts])}--
></em></dd><!--{/if}-->
在此段代码下面添加:
<!--{if $forum[description]}--><dd>$forum[description]</dd><!--{/if}-->
注意不要修改267行的代码,那个是横排样式。