Log in

View Full Version : Conditional


lasto
01-27-2009, 06:52 PM
Is there a conditional i can use to put on main index page (forumhome)

I want different text to appear to different usergroups so how would i go about this.

Example :

If in usergroup 1 show text `A`

iBardia
01-27-2009, 07:03 PM
Have you tried

<if condition=usergroupX>?

lasto
01-27-2009, 09:25 PM
wrong conditional or thats not way to call it in.

Shelley_c
01-27-2009, 09:30 PM
This any help to you.

<if condition="is_member_of($vbulletin->userinfo, 1,2,3,4,8)">

lasto
01-27-2009, 10:23 PM
shelley whats the full code

is it :

<if condition="is_member_of($vbulletin->userinfo, 6)">
hello
</if>

because i cant get it working if it is

Lynne
01-27-2009, 10:40 PM
In a template, it would be:

<if condition="is_member_of($bbuserinfo, 6)">
hello
</if>

lasto
01-27-2009, 10:43 PM
thats it and yep was a template - thanks lynne/Shelley/Ibardia