怎么删除 Powered by Discuz!?

1.怎么删除 Powered by Discuz!?

具体办法: 打开/template/default/common/header_common.htm文件,找到Powered by discuz!
删除即可! 注意同时删除"-"符合

 

<title><!--{if !empty($navtitle)}-->$navtitle<!--{/if}--><!--{if empty($nobbname)}--> - $_G['setting']['bbname']<!--{/if}--></title>

 

2.header.htm

 <!--[if IE 6]><link href="http://www.dayuxi.com/template/default/common/ie6.css" mce_href="http://www.dayuxi.com/template/default/common/ie6.css" rel="stylesheet" type="text/css" /><![endif]-->

 

3.教你修改Discuz! X1 论坛帖子随机点击数

文件路径:source/module/forum/forum_viewthread.php

修改forum_viewthread.php,找到

DB::query("UPDATE LOW_PRIORITY ".DB::table($threadtable)." SET views=views+1 WHERE tid='$_G[tid]'", 'UNBUFFERED');

如要要随即增加帖子2-5次浏览量,修改为

$viewrnd=rand(2,5);  
DB::query("UPDATE LOW_PRIORITY ".DB::table($threadtable)." SET views=views+$viewrnd WHERE tid='$_G[tid]'", 'UNBUFFERED');


注意:$viewrnd=rand(2,5);  控制点击生成次数的范围变化值是2到5之间的数,建议不要高于5次,否则太假了。

 

你可能感兴趣的:(IE,table,query,stylesheet)