Log in

View Full Version : Adding something to the postbit in a conditional statement for subscibers?


gtsch
10-30-2007, 03:11 AM
I have a subscriber group that donates to my site and I'd like to add something in extra on the postbit for them. Is there any conditional known that can encase that in the postbit?

e.g.

<if condition="???"><b>Site Supporter</b></if>


I'd appreciate any help.

Awjvail
10-30-2007, 05:32 AM
<if condition="is_member_of($vbulletin->userinfo, usergroup id number here)">This will only be visible to people in the usergroup which you specified
</if>

So for example if I want groups 5, 6 and 7 to be able to see something, I would go:

<if condition="is_member_of($vbulletin->userinfo, 5,6,7)">This will only be visible to people in usergroups 5,6 and 7
</if>

stick that where you want to in the postbit