PDA

View Full Version : Ad removal options


jhightman
03-07-2008, 03:53 PM
Hello all

I am currently using Red Tyger ad management.

I would likeee to find an ad management solution where members can pay to have ads removed for the month or for the year. Are there any options out there for this:confused:

Thanks!
Jason

RetroDreams
03-07-2008, 04:28 PM
Subscription system.

jhightman
03-10-2008, 01:13 PM
has anyone done this with the subscription system before? Seems like all I can do is allow users to see certain forums or have more storage etc..

Thanks,
Jason

punchbowl
03-10-2008, 01:38 PM
You can add them to a subscribed group and then wrap your ads in a template conditional that will show the ads to all but subscribers, mods and admin e.g. something like

<if condition="is_member_of($vbulletin->userinfo, 20, 6, 7)">
ads here
</if>

that's not specific to Red Tyger though which I believe is no longer supported. Should still work though.

jhightman
03-10-2008, 02:00 PM
awesome.. thats gets me going in the right direction!

Thanks!

punchbowl
03-10-2008, 02:10 PM
some helpful stuff on this thread too

https://vborg.vbsupport.ru/showthread.php?t=169075&highlight=adsense

jhightman
03-11-2008, 02:24 AM
Ok all... thanks for all the help thus far. Feel I am getting close.

I made a new subscription and associated it with a new usergroup with an ID of 12

given that info, the following should work...?


<if condition="is_member_of($vbulletin->userinfo, 12)">
blank data goes here... so not to show ads to users with id of 12
</if>

ads go here

SEOvB
03-11-2008, 02:43 AM
<if condition="is_member_of($vbulletin->userinfo, 12)">
&nbsp;
<else />
Ads here, will show to everyone but usergroup 12
</if>

MoT3rror
03-11-2008, 03:17 AM
If you are doing this in the template it needs to be $bbuserinfo like this
<if condition="is_member_of($bbuserinfo, 12)">
&nbsp;
<else />
Ads here, will show to everyone but usergroup 12
</if>

jhightman
03-11-2008, 01:02 PM
Thanks for all the help.

the $bbuserinfo made the difference