Not Solved Ads only for Guests
#1
Not Solved
Hello, in my forum I want to make ads (Google Adsense) shown only to guests, I don't want members (or a certain usergroup) to see ads, how can I do that?
Reply
#2
Not Solved
simple method is to use template conditionals plugin & add required advt codes with related condition

<if $mybb->user['uid'] == 0 then>
// advt codes
</if>
Reply
#3
Not Solved
or if you want your ads to show on your header you can add your ads at
ACP >>Templates & Style>>Templates>>Header Templates>>header_welcomeblock_guest
Reply
#4
Not Solved
(2020-03-05, 07:27 AM).m. Wrote: simple method is to use template conditionals plugin & add required advt codes with related condition

<if $mybb->user['uid'] == 0 then>
// advt codes
</if>


Why is it 0?  Isn't guest id is 1?
Reply
#5
Not Solved
your right, change it to 1
Reply
#6
Not Solved
guests user group is 1 ; user id for guest is 0

if you want to use usergroup in the condition then code can be like below
<if $mybb->user['usergroup'] == 1 then>
// advt codes
</if>
Reply
#7
Not Solved
@.m how can we use that code to add more than 1 group
Reply
#8
Not Solved
^ can be like this (note: x, y, z are usergroup numbers)
<if in_array($mybb->user['usergroup'], array('x', 'y', 'z')) then>
// advt codes
</if>
Reply
#9
Not Solved
thank you
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)