PDA

View Full Version : Paid Subscriptions: No Advertising?


genesisdnb
08-13-2009, 07:05 AM
Is it possible to disable advertising for people who use the paid subscriptions function? At the moment im putting together a subscription system which my members are willing to pay for but they all request no advertising... There must be a way of doing this?

matthewhotdude
08-13-2009, 07:38 PM
If you find out I would be most interested also

HMBeaty
08-13-2009, 07:41 PM
You could make an additional usergroup so that when they purchase their paid subscription, they get moved into that usergroup and then you could use a conditional like this one...

<if condition="!is_member_of($vbulletin->userinfo, 1, 2, 3)">
YOUR CODE YOU DON'T WANT YOUR SUBSCRIBERS TO VIEW HERE
</if>

genesisdnb
08-13-2009, 07:58 PM
so I put in the usergroups on that havent paid for a subscription?

HMBeaty
08-13-2009, 08:30 PM
Basically you can set it up like this...

You have a default "registered users" usergroup, you just need to add an additional usergroup for users to be moved to after purchasing the paid subscription (for example: "vip members").

Then create your paid subscription and change "Usergroup Options" to make the user be moved to the new usergroup you created.

Then you may use the code I posted to place your advertisements in so your "vip members" won't see those advertisements

genesisdnb
08-14-2009, 06:11 AM
fantastoic, thank you very much :)