PHP Code:
<if condition="is_member_of($bbuserinfo, 2)">
SEE THIS IF REGISTERED
</if>
However, that will only show it for Registered Users, not Super Mods or Admins (assuming you put SMs and Admin as primary users in the SM or Admin group). So, you may want to go:
PHP Code:
<if condition="in_array($bbuserinfo[usergroupid], array(2,5,6,7))">
SHOW TO REGISTERED USERS, MODERATORS, SUPER-MODS, AND ADMINS
</if>