As seen here:
https://vborg.vbsupport.ru/newreply....reply&p=954385
Also, the
Community Forums is the ideal place for posting vBulletin-related questions such as this.
------------------------------
You could also use usergroup's instead of profile fields for this. If you want to do that then use:
Code:
<if condition="is_member_of($bbuserinfo, 6)">
Ooo, you're an admin. You get this special content here.
</if>
And if you want multiple groups to be able to access the content:
Code:
<if condition="is_member_of($bbuserinfo, 4) // Mods
OR is_member_of($bbuserinfo, 5) // Supermods
OR is_member_of($bbuserinfo, 6)"> // Admin
Insert the special content here.
</if>