PDA

View Full Version : Blocking adsense on specific forum


RichieBoy67
10-25-2010, 04:23 PM
Hello,

Would anyone be nice enough to please tell me how to block adsense from displaying in a specific forum? I have been trying to use conditionals but I just cannot figure this out.

Thanks much,

Rich

Jinovich
10-26-2010, 06:15 PM
<vb:if condition="$forum[forumid] != x">adsense code</vb:if>

x = the forum you dont want it shown in

YankForum
10-26-2010, 06:48 PM
above code only works for 1 forum , but if you want to disable ads for several forums you need to use arrays :
<vb:if condition="!in_array($forum['forumid'], array(1,2,3))">Show this to all forums except 1, 2 and 3</vb:if>

RichieBoy67
10-26-2010, 07:13 PM
Thank you so much. I see what I was doing wrong now..

Awesome..!!!