修改文件:
template\default\forum\forumdisplay_list.htm(这个是默认模板,如果你用的第三方模板,先看看有无template\第三方模板\forum\forumdisplay_list.htm文件,有的话改第三方模板文件)
- <div class="auth cl">
- <cite class="xg1 y">
- {lang like}: <!--{if $thread[recommends]}-->$thread[recommends]<!--{else}-->0<!--{/if}-->
- {lang reply}: <a href="forum.php?mod=viewthread&tid=$thread[tid]&extra=$extra" title="$thread[replies] {lang reply}">$thread[replies]</a>
- </cite>
- <!--{hook/forumdisplay_author $key}-->
- <!--{if $thread['authorid'] && $thread['author']}-->
- <a href="home.php?mod=space&uid=$thread[authorid]">$thread[author]</a><!--{if !empty($verify[$thread['authorid']])}--> $verify[$thread[authorid]]<!--{/if}-->
- <!--{else}-->
- $_G[setting][anonymoustext]
- <!--{/if}-->
- </div>
复制代码
1、$thread[author]是用户名
需要改成头像的话,改成
<img src="uc_server/avatar.php?uid={$thread['authorid']}&size=small" alt="">
2、文字“喜欢”对应{lang like},文字“回复”对应{lang reply},改成你想要的内容即可;