Log in

View Full Version : Adsense In VBulletin


CEO254
05-12-2008, 02:38 PM
I need to insert Adsense below the NavBar and I want it viewable only to guests.

Alex@Mk3OC
05-12-2008, 10:57 PM
It's relatibvely straight forward, you need to use an If/else statement so that if the user group is unregistered/not logged in then display the adsense code else don't display the code, if your still stuck I'll dig out the exact code as using a similar thing on my own forum

veenuisthebest
05-13-2008, 01:46 AM
Go to Ad Location Templates/ad_navbar_below and do this:-

<if condition="$show['guest']">

YOUR
ADSENSE
CODE

</if>

CEO254
05-13-2008, 02:21 AM
Thank You!