Log in

View Full Version : Advertisements disappear with usergroup


colochris
08-09-2009, 02:00 AM
Hello,

In order to make some money for web hosting, I am curious if there is a way to disable advertisements for a usergroup.

So say I have a site supporter usergroup, if a user is a member of that group all of the advertisements disappear.

Not even sure if this is possible.

Thanks

Chris

HMBeaty
08-09-2009, 02:02 AM
It is very possible, just use a template conditional like this one...

<if condition="is_member_of($vbulletin->userinfo, 1, 2, 3)"></if>

colochris
08-10-2009, 02:27 AM
So say for the advertisements in the default vbulletin template, would I enter your code, and then my banner coding in say the navbar_below advertisement template?

Then that would make it where it would show up for certain usergroups and not others? Or where do you recommend?

Thanks

Chris

HMBeaty
08-10-2009, 02:34 AM
You would use this code to show for the usergroups you want to show it to
<if condition="is_member_of($vbulletin->userinfo, 1, 2, 3)">
YOUR BANNER CODE
</if>
Or you could use this for the usergroups that you DON'T want to show it to
<if condition="!is_member_of($vbulletin->userinfo, 1, 2, 3)">
YOUR BANNER CODE
</if>

zombietom
01-14-2010, 10:09 PM
Thanks ..this is very helpful and i was looking for this coding. :)