Discuz把主题列表后面的精华图标移动到左侧
操作前注意备份打开forumdisplay.htm
查找:
<td class=\"folder\">
<a href=\"viewthread.php?tid=$thread&extra=$extra\" title=\"{lang target_blank}\" target=\"_blank\">
<!--{if $thread == lock}-->
<img src=\"{IMGDIR}/folder_lock.gif\" alt=\"Lock\" />
<!--{elseif in_array($thread, array(1, 2, 3))}-->
<img src=\"{IMGDIR}/pin_$thread.gif\" alt=\"$threadsticky]\" />
<!--{else}-->
<img src=\"{IMGDIR}/folder_$thread.gif\" alt=\"$thread\" />
<!--{/if}-->
</a>
</td>
替换为
<td class=\"folder\">
<a href=\"viewthread.php?tid=$thread&extra=$extra\" title=\"{lang
target_blank}\" target=\"_blank\">
<!--{if in_array($thread, array(1, 2,
3))}-->
<img src=\"{IMGDIR}/pin_$thread.gif\" /><!--{elseif
$thread >
0}-->
<img src=\"{IMGDIR}/digest_$thread.gif\" alt=\"{lang thread_digest}
$thread\" title=\"{lang thread_digest} $thread\" />
<!--{else}-->
<img src=\"{IMGDIR}/folder_$thread.gif\" />
<!--{/if}-->
</a>
</td>
删除
<!--{if $thread > 0}-->
<img src=\"{IMGDIR}/digest_$thread.gif\" alt=\"{lang thread_digest}
$thread\" title=\"{lang thread_digest} $thread\" />
<!--{/if}-->
页:
[1]