删除discuz帖子内容页举报按钮

overme6个月前 (10-17)网页设计319
Discuz教程之帖子内容页优化,如何取消如下内容页的举报按钮。

该功能,主要是论坛管理者维护时使用,网站访问者使用较少。为了简化网页内容,减少javascript,可以删除该功能。

打开模板文件夹下/forum/viewthread_node.htm文件,搜索pob,找到包含举例按钮的div。 在该div下,找到P标签相关内容,全部删除。

  1. <p>
  2.                                         <!–{if $post[‘invisible’] == 0}–>
  3.                                                 <!–{if $_G[‘setting’][‘magicstatus’]}–>
  4.                                                         <a href=”javascript:;” id=”mgc_post_$post[pid]” onmouseover=”showMenu(this.id)” class=”showmenu”>{lang thread_magic}</a>
  5.                                                 <!–{/if}–>
  6.                                                 <!–{if $_G[‘forum_thread’][‘special’] == 3 && ($_G[‘forum’][‘ismoderator’] && (!$_G[‘setting’][‘rewardexpiration’] || $_G[‘setting’][‘rewardexpiration’] > 0 && ($_G[timestamp] – $_G[‘forum_thread’][‘dateline’]) / 86400 > $_G[‘setting’][‘rewardexpiration’]) || $_G[‘forum_thread’][‘authorid’] == $_G[‘uid’]) && $post[‘authorid’] != $_G[‘forum_thread’][‘authorid’] && $post[‘first’] == 0 && $_G[‘uid’] != $post[‘authorid’] && $_G[‘forum_thread’][‘price’] > 0}–>
  7.                                                         <a href=”javascript:;” onclick=”setanswer($post[‘pid’], ‘$_GET[from]’)”>{lang reward_set_bestanswer}</a>
  8.                                                 <!–{/if}–>
  9.                                                 <!–{if !$post[‘first’] && $_G[‘group’][‘raterange’] && $post[‘authorid’]}–>
  10.                                                         <a href=”javascript:;” onclick=”showWindow(‘rate’, ‘forum.php?mod=misc&action=rate&tid=$_G[tid]&pid=$post[pid]’, ‘get’, -1);return false;”>{lang rate}</a>
  11.                                                 <!–{/if}–>
  12.                                                 <!–{if !empty($postlist[$post[pid]][‘totalrate’]) && $_G[‘forum’][‘ismoderator’]}–>
  13.                                                         <a href=”forum.php?mod=misc&action=removerate&tid=$_G[tid]&pid=$post[pid]&page=$page” onclick=”showWindow(‘rate’, this.href, ‘get’, -1)”>{lang removerate}</a>
  14.                                                 <!–{/if}–>
  15.                                                 <!–{if $post[‘authorid’] != $_G[‘uid’]}–>
  16.                                                         <a href=”javascript:;” onclick=”showWindow(‘miscreport$post[pid]’, ‘misc.php?mod=report&rtype=post&rid=$post[pid]&tid=$_G[tid]&fid=$_G[fid]’, ‘get’, -1);return false;”>{lang report}</a>
  17.                                                 <!–{/if}–>
  18.                                         <!–{/if}–>
  19.                                         <!–{hook/viewthread_postaction $postcount}–>
  20.                                 </p>

复制代码

相关文章

如何去掉Discuz标题中的Powered by Discuz

使用Discuz系统的网站,默认每个页面标题后面会出现”Powered by Discuz!“字样的信息,使得页面标题比较冗长。 为优化标题结构,在此分享Discuz标题结构优化方法。 操作方法如...

Discuz主题链接地址URL显示完全的修改教程

登陆FTP,打开 source/function/function_discuzcode.php 下载到本地,用代码编辑器编辑 搜索 如下代码 $length = 65; if(strle...

discuz通过{eval }在模板中运行 PHP语句

为了安全起见,discuz 系统默认模板文件无法直接用 <?php … ?> 来运行PHP语句,只能通过固定标签 {eval} 在模板中运行 PHP 语句。 discuz模板php单行...


		Discuz网站SEO优化,archiver功能开启还是关闭

Discuz网站SEO优化,archiver功能开启还是关闭

部分使用Discuz的朋友,认为静态链接利于搜索引擎爬虫抓取,因此开启了archiver功能。 Discuz archiver功能缺点:页面中的keywords,description都是相同的,...

Discuz Header meta代码解析

Discuz系统统一的头部文件所在位置:/template/default/common/header_common.htm 部分代码解析如下: <meta http-equiv=”Cont...

Discuz论坛入口文件forum.php解析

//定义两个常量,定义当前应用ID define(‘APPTYPEID’, 2); //定义当前应用脚本名称 define(‘CURSCRIPT’, ‘forum’); //引入两个核心库文件 r...

发表评论

访客

看不清,换一张

◎欢迎参与讨论,请在这里发表您的看法和观点。