The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#2
|
|||
|
|||
![]()
I am sure I will be corrected if I am wrong, however I believe the "is_member_of" performs an additional SQL call.
I would try one of these instead: Code:
<if condition="$bbuserinfo[usergroupid] == 2"> ..what you put here would only show for users in usergroup 2.. </if> Code:
<if condition="$bbuserinfo[usergroupid] != 2"> ..what you put here would only show for users not in usergroup 2.. </if> Code:
<if condition="$bbuserinfo[usergroupid] == 2"> ..what you put here would only show for users in usergroup 2.. </if> Code:
<if condition="in_array($bbuserinfo[usergroupid], array(2,3,4))"> ..what you put here would only show for users in usergroup 2, 3 & 4.. </if> Code:
<if condition="!in_array($bbuserinfo[usergroupid], array(2,3,4))"> ..what you put here would only show for users not in usergroup 2, 3 & 4.. </if> |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|