本帖最后由 mandy~ 于 2016-11-2 13:26 编辑
帖子列表页
template/default/forum/forumdisplay_list.htm
查找233行
- <!--{if $thread['authorid'] && $thread['author']}-->
复制代码
替换为
- <!--{if $thread['authorid'] && $thread['author'] && in_array($_G[groupid], array(1, 2,3))}-->
复制代码
帖內
template/default/forum/viewthread_node.htm
查找23行
- <!--{if $post['authorid'] && $post['username'] && !$post['anonymous']}-->
复制代码
替换为
- <!--{if $post['authorid'] && $post['username'] && !$post['anonymous'] && !$post['first'] || in_array($_G[groupid], array(1, 2,3))}-->
复制代码
另外如果是要游客帖內都看不到所有的用户名(包括回覆),则替换为
- <!--{if $post['authorid'] && $post['username'] && !$post['anonymous'] && in_array($_G[groupid], array(1, 2,3))}-->
复制代码
array(1, 2,3))这是用户组的id,除了游客的用户组id不要添加进去,其它的用户组id添加进去即可。
修改好后上传覆盖,后台更新缓存。 |