只有游客浏览论坛才看到相关的广告
让广告只显示给游客看,会员免受广告的打扰
修改以后,,登录以后,将看不到广告
适用于在论坛投放google adsense的站长,因为论坛会员长期混迹论坛,对广告有免疫力;而且,一个会员如果有点击ggad的习惯,很容易造成帐号被k,因此,游客看广告,会员不看广告,可以提高ggad的点击率和帐号被k的危险
一、帖子页面:模版文件viewthread.htm
1、针对页内广告的修改
<!--{if !empty($advlist['text'])}-->
修改为
<!--{if !empty($advlist['text']) && !$discuz_uid}-->
2、针对帖内广告(帖子正文上方)
<!--{if !empty($advlist['thread2'][$post['count']])}-->
修改为
<!--{if !empty($advlist['thread2'][$post['count']]) && !$discuz_uid}-->
3、针对帖内广告(帖子正文右边)
<!--{if !empty($advlist['thread3'][$post['count']])}-->
修改为
<!--{if !empty($advlist['thread3'][$post['count']]) && !$discuz_uid}-->
4、针对帖内广告(帖子正文下方)
<!--{if !empty($advlist['thread1'][$post['count']])}-->
修改为
<!--{if !empty($advlist['thread1'][$post['count']]) && !$discuz_uid}-->
二、帖子列表页面:模版forumdispaly.htm
针对页内广告
<!--{if !empty($advlist['text'])}-->
修改为
<!--{if !empty($advlist['text']) && !$discuz_uid}-->
三、首页:模版discuz.htm
针对页内广告
<!--{if !empty($advlist['text'])}-->
修改为
<!--{if !empty($advlist['text']) && !$discuz_uid}-->
四、底部横幅广告:模版footer.htm
<!--{if !empty($advlist['footerbanner1'])}-->
<!--{if !empty($advlist['footerbanner2'])}-->
<!--{if !empty($advlist['footerbanner3'])}-->
根据需要分别修改为
<!--{if !empty($advlist['footerbanner1']) && !$discuz_uid}-->
<!--{if !empty($advlist['footerbanner2']) && !$discuz_uid}-->
<!--{if !empty($advlist['footerbanner3']) && !$discuz_uid}-->
以上所有修改,其实就是在广告代码的显示判断里面,加上一个 && !$discuz_uid