Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[求助] 想问帖子内容页和列表页如何对游客隐藏用户名

[复制链接]
兆小月 发表于 2016-11-1 10:24:09 | 显示全部楼层 |阅读模式
想问帖子内容页和列表页如何对游客隐藏发帖作者用户名
⑧穿内裤 发表于 2016-11-1 10:52:54 | 显示全部楼层
可以写插件去做到
回复

使用道具 举报

mandy~ 发表于 2016-11-1 14:41:27 | 显示全部楼层
本帖最后由 mandy~ 于 2016-11-2 13:26 编辑

帖子列表页
template/default/forum/forumdisplay_list.htm
查找233行
  1. <!--{if $thread['authorid'] && $thread['author']}-->
复制代码

替换为
  1. <!--{if $thread['authorid'] && $thread['author'] && in_array($_G[groupid], array(1, 2,3))}-->
复制代码


帖內
template/default/forum/viewthread_node.htm
查找23行
  1. <!--{if $post['authorid'] && $post['username'] && !$post['anonymous']}-->
复制代码

替换为
  1. <!--{if $post['authorid'] && $post['username'] && !$post['anonymous'] && !$post['first'] || in_array($_G[groupid], array(1, 2,3))}-->
复制代码


另外如果是要游客帖內都看不到所有的用户名(包括回覆),则替换为
  1. <!--{if $post['authorid'] && $post['username'] && !$post['anonymous'] && in_array($_G[groupid], array(1, 2,3))}-->
复制代码


array(1, 2,3))这是用户组的id,除了游客的用户组id不要添加进去,其它的用户组id添加进去即可。
修改好后上传覆盖,后台更新缓存。
回复

使用道具 举报

格东站长网插件 发表于 2016-11-1 15:58:17 | 显示全部楼层
改为<!--{if $thread['authorid'] && $thread['author'] && $_G[uid]}-->就可以了
回复

使用道具 举报

 楼主| 兆小月 发表于 2016-11-1 16:30:29 | 显示全部楼层
mandy~ 发表于 2016-11-1 14:41
帖子列表页
template/default/forum/forumdisplay_list.htm
查找233行

列表页还有最后发表也会显示出来
回复

使用道具 举报

q398601673 发表于 2016-11-1 17:00:17 | 显示全部楼层
mandy~ 发表于 2016-11-1 14:41
帖子列表页
template/default/forum/forumdisplay_list.htm
查找233行

大神帮我也解答解答呗
https://discuz.dismall.com/thread-3786931-1-1.html
回复

使用道具 举报

mandy~ 发表于 2016-11-1 17:54:15 | 显示全部楼层
本帖最后由 mandy~ 于 2016-11-2 13:27 编辑
兆小月 发表于 2016-11-1 16:30
列表页还有最后发表也会显示出来

帖子列表页
template/default/forum/forumdisplay_list.htm
查找243行
  1. <!--{if $thread['lastposter']}-->
复制代码

替换为
  1. <!--{if $thread['lastposter'] && in_array($_G[groupid], array(1, 2,3))}-->
复制代码

array(1, 2,3))这是用户组的id,除了游客的用户组id不要添加进去,其它的用户组id添加进去即可。
修改好后上传覆盖,后台更新缓存。


另外上次的帖内修改做了补充
https://discuz.dismall.com/forum. ... 33&pid=29704194
回复

使用道具 举报

mandy~ 发表于 2016-11-1 17:58:36 | 显示全部楼层
q398601673 发表于 2016-11-1 17:00
大神帮我也解答解答呗
https://discuz.dismall.com/thread-3786931-1-1.html

参考,修改好后切换默认风格试下。
https://discuz.dismall.com/thread-3277429-1-1.html
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-24 20:32 , Processed in 0.019908 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表