View Full Version : Template Question (solved)
Mr Chad
12-22-2005, 10:36 PM
What is the proper If statement in Template HTML for
if usergroup 2
is there one?
like i see <if condition="$show['member']"> for all members
<if condition="$bbuserinfo['usergroupid'] == 2">
Mr Chad
12-23-2005, 12:35 AM
<if condition="$bbuserinfo['usergroupid'] == 2">
Thanks !
how would i do it for multiple usergroups instead of making diff statements?
<if condition="$bbuserinfo['usergroupid'] == 2,3,4">
or no?
Thanks !
how would i do it for multiple usergroups instead of making diff statements?
<if condition="$bbuserinfo['usergroupid'] == 2,3,4">
or no?
<if condition="$bbuserinfo['usergroupid'] == 2 OR $bbuserinfo['usergroupid'] == 3 OR $bbuserinfo['usergroupid'] == 4">
Mr Chad
12-23-2005, 12:44 AM
thanks again.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.