Log in

View Full Version : Conditionals on a non-vB page?


thuffner
11-16-2005, 08:25 PM
Alright here is what I want to do:

For members registered on my message board, I want to hide my Google Adsense ads - on vB and non-vB pages.

How would I go about doing this? I have looked for some time now and it seems pretty complicated... :ermm: :ermm:

tnguy3n
11-16-2005, 08:35 PM
To hide ads on vB powered page, put
<if condition="!$bbuserinfo[userid]">Your Ads Code Here</if>

and on your non-vb page, just don't put the ads. :p

Billspaintball
11-17-2005, 12:18 AM
Easy.
On the non Vb page (must be a .php page, not .html )

At the very top of the page just add this
(Make sure you change the 'path/to/your/forums' to what your forums path is)

<?php
chdir('/path/to/your/forums');
require_once('/path/to/your/forums'/global.php');
?>


Then, where you want the add on the page


<?php
if ($vbulletin->userinfo['userid'] <1) { echo"add code stuff goes here"; }
?>

Dark Riku
11-29-2005, 09:43 PM
Didnt work for me =( I tried this with an else statement though. COuld that be why?