The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
|
#1
|
||||
|
||||
![]()
If it's usergroup 9 you use for your subscribers, you can use this:
Code:
<if condition="$bbuserinfo[usergroupid]!=9"> <!-- Non-Subscriber Stuff Here --> </if> Code:
<if condition="!is_member_of($bbuserinfo, 9)"> <!-- Non-Subscriber Stuff Here --> </if> ![]() If you were wanting one block of code for subscribers and one for non-subscribers, use one of the following: Code:
<if condition="$bbuserinfo[usergroupid]!=9"> <!-- Non-Subscriber Stuff Here --> <else /> <!-- Subscriber Stuff Here --> </if> Code:
<if condition="!is_member_of($bbuserinfo, 9)"> <!-- Non-Subscriber Stuff Here --> <else /> <!-- Subscriber Stuff Here --> </if> |
![]() |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|