PDA

View Full Version : Web Page for paid members only


bluidkiti
03-27-2011, 04:22 PM
I would like to add a page to my forum that only paid members can view. How do I do that? I know how to make vbulletin pages. I just don't know how to do this so only paid members are the only ones viewing it. Thanks in advance for any help.

BirdOPrey5
03-27-2011, 04:37 PM
In the template you make for your page, surround the entire content of the template it in this conditional:


<if condition="is_member_of($bbuserinfo, x, y, z)">
original content
</if>


where x, y, and z are your usergroupids for your paid members and your administrators and such.

If you want to show a message to non-paying users do something like this:


<if condition="is_member_of($bbuserinfo, x, y, z)">
original content
<else />
<strong>Sorry, this page is for paying members only.</strong>
</if>