In online.php templates, you can use:
- $bbuserinfo (vB3.0 style, depreciated but still supported in 3.5 and up)
- or $vbulletin->userinfo (vB3.5 & up style)
To use a field from the userinfo use either:
- $bbuserinfo[field]
- $vbulletin->userinfo[field] (PS If you get "Array"-errors, then surround with curly-brackets, ie: {$vbulletin->userinfo[field]} )
To test for usergroup you can use:
HTML Code:
<if condition="is_member_of($bbuserinfo, 15)">
or
HTML Code:
<if condition="is_member_of({$vbulletin->userinfo}, 15)">