PDA

View Full Version : Hide ads for specified some users


Tommy8x
02-22-2009, 03:20 AM
Hi, I've put the ads on my forum but it made the page loading is more slower for serveral users, I want to hide these ads code for that users. Can anyone help me find the PHP code to do it?

vbplusme
02-22-2009, 07:04 AM
That's pretty weird that the load slowly only for some users? What kind of ads?

You could wrap your ads call with a conditional, for example,

<if condition="$bbuserinfo['userid'] != 667">

Your ads code

</if>

Tommy8x
02-22-2009, 07:17 AM
Because my hosting located in Vietnam and that user is in USA.

Above code will only show the ads for userid=667 but everyone cant see the ads, is this true?

Dismounted
02-24-2009, 04:58 AM
Above code will only show the ads for userid=667 but everyone cant see the ads, is this true?
It will do the opposite. It will show ads to everyone except user ID 667.

Tommy8x
02-24-2009, 05:03 AM
If I want to add more user to except, how can I do with this code?

Dismounted
02-24-2009, 05:07 AM
<if condition="!in_array($bbuserinfo['userid'], array(667, X, Y, Z, 1000))">

Tommy8x
02-24-2009, 05:17 AM
Thanks Dismounted. Have a nice day :D

Tommy8x
03-01-2009, 04:25 AM
Example:
<if condition="!in_array($bbuserinfo['userid'], array(1, 5))">
Ads code
</if>
The results as userid=1 and userid=5 will not see the ads? Is that right?

3 users between 1 and 5 (such as id=2, 3, 4) still see the ads?

Mr-Moo
03-01-2009, 07:26 PM
That is correct,

You will have to put every userid number into the array for it to reflect the display properties.

Another alteration for this is to have it go by usergroup instead of userid and simply add the usergroup to this instead of having to manually edit the code every time you want to add/remove someone from the option.

Dismounted
03-02-2009, 05:03 AM
The results as userid=1 and userid=5 will not see the ads? Is that right?
Yes
3 users between 1 and 5 (such as id=2, 3, 4) still see the ads?
Yes