Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

求 论坛页面 版块显示 修改

[复制链接]
mankowk 发表于 2013-6-16 19:29:58 | 显示全部楼层 |阅读模式
DIY模块素材
模块类型: 论坛类
展示风格: 纯代码
是否原创:
(图一)


(图二)


小弟的 论坛页面 版块显示 是(图一)。
我想将它变成(图二)那样子,有 版块名称,最后发表标题, 最后发表时间,
(不想显示 今天发了多少帖等等的讯息)

这个是  论坛页面 版块,不是模块DIY,所以不能用 DIY修改。
请问有没有师兄能教教我要如何修改?


本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
 楼主| mankowk 发表于 2013-6-16 22:18:40 | 显示全部楼层
本帖最后由 mankowk 于 2013-6-16 22:30 编辑

看过很多 文章,
应是要修改 \template\xxx\forum\discuz.php 档案,
但不是太了解这几句代码的运作,
各位师兄可不可以说明一下。
  1. <td class="fl_g"{if $forumcolwidth} width="$forumcolwidth"{/if}>
  2.       <div class="fl_icn_g"{if !empty($forum[extra][iconwidth]) && !empty($forum[icon])} style="width: {$forum[extra][iconwidth]}px;"{/if}>
  3.       <!--{if $forum[icon]}-->
  4.             $forum[icon]
  5.       <!--{else}-->
  6.             <a href="$forumurl"{if $forum[redirect]} target="_blank"{/if}><img src="{IMGDIR}/forum{if $forum[folder]}_new{/if}.gif" alt="$forum[name]" /></a>
  7.       <!--{/if}-->
  8.       </div>
  9.       <dl{if !empty($forum[extra][iconwidth]) && !empty($forum[icon])} style="margin-left: {$forum[extra][iconwidth]}px;"{/if}>
  10.            <dt><a href="$forumurl"{if $forum[redirect]} target="_blank"{/if}{if $forum[extra][namecolor]} style="color: {$forum[extra][namecolor]};"{/if}>$forum[name]</a><!--{if $forum[todayposts] && !$forum['redirect']}--><em class="xw0 xi1" title="{lang forum_todayposts}"> ($forum[todayposts])</em><!--{/if}--></dt>
  11.                                          
  12.            <!--{if empty($forum[redirect])}--><dd> <span class="xi2"> <!--{echo dnumber($forum[threads])}--></span> <span class="xg1"> /<!--{echo dnumber($forum[posts])}--></span> </dd><!--{/if}-->
  13.                                                                                  
  14.            <dd>
  15.            <!--{if $forum['permission'] == 1}-->
  16.                  {lang private_forum}
  17.            <!--{else}-->
  18.                 <!--{if $forum['redirect']}-->
  19.                       <a href="$forumurl" class="xi2">{lang url_link}</a>
  20.                 <!--{elseif is_array($forum['lastpost'])}-->
  21.                       <!--{if $forumcolumns < 3}-->
  22.                       <a href="forum.php?mod=redirect&tid=$forum[lastpost][tid]&goto=lastpost#lastpost" class="xi2"><!--{echo cutstr($forum[lastpost][subject], 30)}--></a> <cite>$forum[lastpost][dateline] <!--{if $forum['lastpost']['author']}-->$forum['lastpost']['author']<!--{else}-->$_G[setting][anonymoustext]<!--{/if}--></cite>
  23.                       <!--{else}-->
  24.                           <a href="forum.php?mod=redirect&tid=$forum[lastpost][tid]&goto=lastpost#lastpost">{lang forum_lastpost}: $forum[lastpost][dateline]</a>
  25.                       <!--{/if}-->
  26.                   <!--{else}-->
  27.                         {lang never}
  28.                   <!--{/if}-->
  29.                <!--{/if}-->
  30.                </dd>
  31.                <!--{hook/index_favforum_extra $forum[fid]}-->
  32.          </dl>
  33. </td>
复制代码
回复

使用道具 举报

 楼主| mankowk 发表于 2013-6-16 23:59:41 | 显示全部楼层
请问是否要修改这个部份的代码
  1. <p><dl{if !empty($forum[extra][iconwidth]) && !empty($forum[icon])} style="margin-left: {$forum[extra][iconwidth]}px;"{/if}>
  2.      <dt><a href="$forumurl"{if $forum[redirect]} target="_blank"{/if}{if $forum[extra][namecolor]} style="color: {$forum[extra][namecolor]};"{/if}>$forum[name]</a><!--{if $forum[todayposts] && !$forum['redirect']}--><em class="xw0 xi1" title="{lang forum_todayposts}"> ($forum[todayposts])</em><!--{/if}--></dt>
  3.                                        
  4.      <!--{if empty($forum[redirect])}--><dd> <span class="xi2"> <!--{echo dnumber($forum[threads])}--></span> <span class="xg1"> /<!--{echo dnumber($forum[posts])}--></span> </dd><!--{/if}-->
  5.          
  6.      <dd>
  7.      <!--{if $forum['permission'] == 1}-->
  8.            {lang private_forum}
  9.      <!--{else}-->
  10.            <!--{if $forum['redirect']}-->
  11.                 <a href="$forumurl" class="xi2">{lang url_link}</a>
  12.            <!--{elseif is_array($forum['lastpost'])}-->
  13.                 <!--{if $forumcolumns < 3}-->
  14.                       <a href="forum.php?mod=redirect&tid=$forum[lastpost][tid]&goto=lastpost#lastpost" class="xi2"><!--{echo cutstr($forum[lastpost][subject], 30)}--></a> <cite>$forum[lastpost][dateline] <!--{if $forum['lastpost']['author']}-->$forum['lastpost']['author']<!--{else}-->$_G[setting][anonymoustext]<!--{/if}--></cite>
  15.             <!--{else}-->
  16.                         <a href="forum.php?mod=redirect&tid=$forum[lastpost][tid]&goto=lastpost#lastpost">{lang forum_lastpost}: $forum[lastpost][dateline]</a>
  17.             <!--{/if}-->
  18.         <!--{else}-->
  19.             {lang never}
  20.         <!--{/if}-->
  21.    <!--{/if}-->
  22.    </dd>
  23.    <!--{hook/index_favforum_extra $forum[fid]}--></p><p> </dl></p><p> </p>
复制代码
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-23 19:18 , Processed in 0.023298 second(s), 4 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表