Quote:
Originally Posted by Ozy
I have no idea how to do that.
|
Check out this article:
http://www.vbulletin.com/docs/html/t...e_conditionals
What you'd want to do is make note of your usergroup numbers in the Usergroup Manager.
Then edit the template and "around" the $rsvp_form (that you added when installing), put this:
Code:
<if condition="is_member_of($bbuserinfo, 6, 13)">
$rsvp_form
</if>
That will hide the RSVP form from everyone except people in the 6 and 13 usergroups.
If you wanted to show another message, instead of just hiding it, you'd do this:
Code:
<if condition="is_member_of($bbuserinfo, 6, 13)">
$rsvp_form
<else />
You are not authorized to RSVP for this event.
</if>