PDA

View Full Version : How to show something to ONLY 1 Usergroup


SmileyR
07-02-2008, 02:19 AM
How do i?

Cause i have it set to when users register they are placed in a group that has limited permissions till 5 posts and then they are promoted but i need to have something shown to them to tell them that.

Opserty
07-02-2008, 06:29 AM
<if condition="is_member_of($vbulletin->userinfo, X, Y, Z)">
DISPLAY THIS HTML
<else />
Display this html
</if>

X, Y, Z are usergroup ids

Dismounted
07-02-2008, 06:35 AM
<if condition="is_member_of($bbuserinfo, X)">STUFF</if>
Where "X" is the usergroup ID.

Alternatively, you could use the "Notices" feature.

SmileyR
07-02-2008, 09:38 AM
<if condition="is_member_of($bbuserinfo, X)">STUFF</if>
Where "X" is the usergroup ID.

Alternatively, you could use the "Notices" feature.
Thank you,

I use 3.6.10 tho =] thanks!