PHPBB3.X论坛风格模板文件forumlist_body.html修改 for subsilver2风格
打开 styles/subsilver2/template/forumlist_body.html文件
查找
[code] <th colspan="2"> {L_FORUM} </th>
<th width="50"> {L_TOPICS} </th>
<th width="50"> {L_POSTS} </th>
<th> {L_LAST_POST} </th>[/code]
替换为
[code] <th width="46"> </th>
<th width="554"> {L_FORUM} </th>
<th width="70"> {L_TOPICS} </th>
<th width="70"> {L_POSTS} </th>
<th width="260"> {L_LAST_POST} </th>[/code]
保存,上传覆盖,登录后台,清除缓存后,刷新即可。
2,phpbb3首页版面列表右侧显示新文章标题
[code]<!-- IF forumrow.U_UNAPPROVED_TOPICS --><a href="{forumrow.U_UNAPPROVED_TOPICS}">{UNAPPROVED_IMG}</a> <!-- ENDIF --></p>
<p class="topicdetails">
<!-- IF not S_IS_BOT --><a href="{forumrow.U_LAST_POST}">{forumrow.LAST_POST_SUBJECT}</a><!-- ENDIF -->
<br><dfn>{L_LAST_POST}</dfn> {L_POST_BY_AUTHOR} {forumrow.LAST_POSTER_FULL} <br>{forumrow.LAST_POST_TIME}[/code]替换成
[code]<!-- IF not S_IS_BOT --><a href="{forumrow.U_LAST_POST}">{forumrow.LAST_POST_SUBJECT}</a><!-- ENDIF -->
<br><dfn>{L_LAST_POST}</dfn> {L_POST_BY_AUTHOR} {forumrow.LAST_POSTER_FULL} <br>{forumrow.LAST_POST_TIME}[/code]
保存,上传覆盖,登录后台,清除缓存后,刷新即可。