The Arcive of vBulletin Modifications Site. |
|
|
#1
|
||||
|
||||
|
hello all, i have a quick question regarding an if conditiional.
ok i'm trying to show an image in the postbit to mods and admins only, but only if the user is a member of a particular usergroup in this case we'll call it usergroup 10. this is the code i have so far but it doesnt appear to be correct: Code:
<if condition="($bbuserinfo[usergroupid]==6 || $bbuserinfo[usergroupid]==7 || $bbuserinfo[usergroupid]==5)">
<if condition="is_member_of($vbulletin->userinfo, 10)">
<img src="$stylevar[imgdir_misc]/image.gif" alt="$post[username] status" border="0" />
</if>
</if>
any help is much appreciated ![]() --------------- Added 15 Jun 2009 at 13:24 --------------- ok just after i posted this i found an article and found conditional i hadnt tried and now the code looks like this Code:
<if condition="($bbuserinfo[usergroupid]==6 || $bbuserinfo[usergroupid]==7 || $bbuserinfo[usergroupid]==5)">
<if condition="$post['usergroupid'] == 10">
<img src="$stylevar[imgdir_misc]/image.gif" alt="$post[username] status" border="0" />
</if>
</if>
again any help is appreciated
|
|
#2
|
|||
|
|||
|
You could make it simpler & cleaner, but not really.
<if condition="in_array($bbuserinfo[usergroupid], array(5,6,7))"> |
|
#3
|
||||
|
||||
|
thanks anthony
|
![]() |
|
|
| X vBulletin 3.8.12 by vBS Debug Information | |
|---|---|
|
|
More Information |
|
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|