帖子列表页用户头像下面的主题\听众\积分信息删除方法:
1.我们首先知道这块代码文件在那里\template\default\forum\viewthread_node.htm
(如果要删除”主题,听众,积分”这些,只需将下面的代码删除即可)- <div class=”tns xg2″>
- <table cellspacing=”0″ cellpadding=”0″>
- <th><p><a href=”home.php?mod=space&uid=$post[authorid]&do=thread&view=me&from=space” class=”xi2″><!–{echo dnumber($post[threads])}–></a></p>{lang threads}</th>
- <th>
- <!–{if helper_access::check_module(‘follow’)}–>
- <p><a href=”home.php?mod=follow&do=follower&uid=$post[authorid]” class=”xi2″><!–{echo dnumber($post[follower])}–></a></p>{lang follower}
- <!–{else}–>
- <p><a href=”home.php?mod=space&uid=$post[authorid]&do=friend&view=me” class=”xi2″><!–{echo dnumber($post[friends])}–></a></p>{lang friends}
- <!–{/if}–>
- </th>
- <td><p><a href=”home.php?mod=space&uid=$post[authorid]&do=profile” class=”xi2″><!–{echo dnumber($post[credits])}–></a></p>{lang credits}</td>
- </table>
- </div>
复制代码 2.解释下对应代码
$post[threads]=主题
$post[follower]=听众数量
$post[credits]=总积分
|