PDA

View Full Version : Show specific text to specific usergroup code


fearfx
04-19-2007, 08:36 PM
<if condition="$show['member']">
<a href="http://www..com/usercp.php">User CP</a>
</if>

instead of member, what would I put for a specific user group.

harmor19
04-19-2007, 11:36 PM
<if condition="is_member_of($bbuserinfo, X,Y) ">
<a href="http://www..com/usercp.php">User CP</a>
</if>


Change "X" and/or "Y" to the usergroup ID's that you want to see the link.