帖子页会员名称左侧等级图标替换为性别图标的方法!
首先打开 viewthread_node.htm 文件查找代码- <!--{if !$post['anonymous'] && $_G['cache']['groupicon'][$post['groupid']]}-->
- <img class="authicn" id="authicon$post[pid]" src="$_G['cache']['groupicon'][$post['groupid']]" onclick="showauthor(this, 'userinfo$post[pid]')" />
- <!--{else}-->
- <img class="authicn" id="authicon$post[pid]" src="{STATICURL}image/common/online_member.gif" onclick="showauthor(this, 'userinfo$post[pid]');" />
- <!--{/if}-->
复制代码 将其替换为- <!--{if $post['gender']==1}-->
- <img src="{IMGDIR}/male.gif" class="authicn" title="帅哥" alt="帅哥" />
- <!--{elseif $post['gender']==2}-->
- <img src="{IMGDIR}/female.gif" class="authicn" title="美女" alt="美女" />
- <!--{else}-->
- <img src="{IMGDIR}/secret.gif" class="authicn" title="人妖" alt="人妖" />
- <!--{/if}-->
复制代码 然后将头像文件上传至模板图片文件夹
头像文件:
头像文件.rar
(1.81 KB, 下载次数: 28)
|
|
|
|