Quote:
Originally Posted by JackG
Does anyone know how I can limit the Pets usage to users in a specific category?
|
This can be done using vB3 <if> statements. My guess is that it would be best to wrap the table where the user can change their pet info in MODIFYPROFILE in something like
Code:
<if condition="$bbuserinfo[usergroup]==2"> table stuff here </if>
That right there would only let the pets show up for user group 2. You can change the "==2" to "!=2" to make it so that all groups EXCEPT group 2 can see the pet stuff in the profile.