crx349 发表于 2022-1-25 14:45:07

Discuz!x3.4 主题操作记录 自定义隐藏

需求:主题操作记录,不想让管理外的用户组查看
修改:
1.打开template/default/forum/viewthread_node_body.htm(default可以换成第三方模板目录)

搜索:

<!--{if !empty($lastmod['modaction'])}--><div class="modact"><a href="forum.php?mod=misc&action=viewthreadmod&tid=$_G" title="{lang thread_mod}" onclick="showWindow('viewthreadmod', this.href)"><!--{if $lastmod['modactiontype'] == 'REB'}-->{lang thread_mod_recommend_by}<!--{else}-->{lang thread_mod_by}<!--{/if}--></a></div><!--{/if}-->

修改成:
<!--{if $_G['groupid']=='1'}-->
                        <!--{if !empty($lastmod['modaction'])}--><div class="modact"><a href="forum.php?mod=misc&action=viewthreadmod&tid=$_G" title="{lang thread_mod}" onclick="showWindow('viewthreadmod', this.href)"><!--{if $lastmod['modactiontype'] == 'REB'}-->{lang thread_mod_recommend_by}<!--{else}-->{lang thread_mod_by}<!--{/if}--></a></div><!--{/if}-->
                        <!--{/if}-->

说明:groupid 对应后台管理用户组id

2.保存,上传覆盖同名文件,更新缓存,完成
页: [1]
查看完整版本: Discuz!x3.4 主题操作记录 自定义隐藏