Quote:
Originally Posted by tomshawk
Hello Everyone,
Got a quick question.
I have multiple usergroups setup and many of them have ranks
Even Mods and up can join the opther groups
Mods and up also have rank images
I have it working but basically doing an if statement show image
Here is an example:
Code:
<if condition="is_member_of($userinfo, 24)">
<img src="http://www.tech-unity.com/forums/images/ranks/premium.jpg" ALT="Premium Member">
</if>
This works fine for mods who are have there own rank image already
but, if a regular user subscribes to a group with this rank image, it is going to show up twice in there postbit, once in the normal rank place and once whre I added this code.
so, I am thinking, and this is what I would like your help with.
if usergroup 5 or 6 or 7 and 24
show the image
/if
Any ideas on how to do this
|
OK, I tryed to set up an array in phpinclude_start, Like this
$staffgroups = array(5 or 6 or 7);
Then changed the postbit code to this
<center>
<if condition="is_member_of($userinfo, 24, $staffgroups)">
<img src="http://www.tech-unity.com/forums/images/ranks/premium.jpg" ALT="Premium Member">
</if>
</center>
But still no glory.
Can anyone help me with this?