本帖最后由 dgtv 于 2009-11-25 01:51 编辑
打开 templates/default/ 下的disucz.htm
找到
<th width="$cat[forumcolwidth]"{$forum[folder]}>
如果只需要显示图片,则在后面加上下面的代码
<a href="forumdisplay.php?fid=$forum[fid]">{$forum[icon]}</a>
如果还要显示版块的介绍,则在
<!--{if $forum[todayposts]}--><em> ({lang index_today}: <strong>$forum[todayposts]</strong>)</em>
后面添加
<!--{/if}--><!--{if $forum[description]}--><p>$forum[description]</p><!--{/if}-->
如果要去掉最后发表,只需要删除下面的代码
<p>{lang forum_lastpost}:
<!--{if is_array($forum['lastpost'])}-->
<a href="redirect.php?tid=$forum[lastpost][tid]&goto=lastpost#lastpost" title="{echo cutstr($forum[lastpost][subject], 30)} {lang forum_lastpost_by} {if $forum['lastpost']['author']}$forum['lastpost']['authorusername']{else}{lang anonymous}{/if} ">$forum[lastpost][dateline]</a>
<!--{else}-->
{lang never}
<!--{/if}-->
</p>
去除有无新贴图标
打开template/default/css_common.htm
找到:
.list th { background: url({IMGDIR}/forum.gif) 5px 10px no-repeat; padding-left: 45px !important; }
.list th.new { background-image: url({IMGDIR}/forum_new.gif); }
打开 templates/default/ 下的disucz.htm
找到<p class="right forumcount">
把
{lang index_today}: <em>$todayposts</em>, {lang index_yesterday}: <em>$postdata[0]</em>, {lang index_members}: <em>$totalmembers</em>
替换成下面的代码选其中一个
这个是完整的统计
{lang index_today}: <em>$todayposts</em>, {lang index_yesterday}: <em>$postdata[0]</em>, {lang index_maxday}: <em>$postdata[1]</em>, {lang index_members}: <em>$totalmembers</em>, {lang index_threads}: <em>$threads</em>, {lang index_posts}: <em>$posts</em>, {lang welcome_newmember} <cite><a href="space.php?username=$memberenc">$lastmember</a></cite>
这个统计显示主题数 帖子数 会员数 欢迎新会员数
{lang index_threads}: <em>$threads</em>,
{lang index_posts}: <em>$posts</em>,
<!-- {lang index_today}: <em>$todayposts</em>,
{lang index_yesterday}: <em>$postdata[0]</em>, -->
{lang index_members}: <em>$totalmembers</em>,
{lang welcome_newmember}: <a href="space.php?username=$memberenc">$lastmember</a>
谁用了不顶的不是人啊! |