The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Ad removal options
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 Thanks! Jason |
#2
|
|||
|
|||
Subscription system.
|
#3
|
|||
|
|||
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 |
#4
|
|||
|
|||
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
Code:
<if condition="is_member_of($vbulletin->userinfo, 20, 6, 7)"> ads here </if> |
#5
|
|||
|
|||
awesome.. thats gets me going in the right direction!
Thanks! |
#6
|
|||
|
|||
|
#7
|
|||
|
|||
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...? Code:
<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 |
#8
|
||||
|
||||
Code:
<if condition="is_member_of($vbulletin->userinfo, 12)"> <else /> Ads here, will show to everyone but usergroup 12 </if> |
#9
|
|||
|
|||
If you are doing this in the template it needs to be $bbuserinfo like this
Code:
<if condition="is_member_of($bbuserinfo, 12)"> <else /> Ads here, will show to everyone but usergroup 12 </if> |
#10
|
|||
|
|||
Thanks for all the help.
the $bbuserinfo made the difference |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|