Log in

View Full Version : <if condition="$bbuserinfo['usergroupid'] == 2">TEXT</if>


FrozenCreations
08-28-2005, 12:47 PM
hello, i tryed putting that code in the header, it shows a welcome text to usergroup #2, (i think) and i was wondering what the code should be? i was it 2 welcom Registered users only! (if he is part of an aditional usergroup, it skips him)

Paul M
08-28-2005, 02:02 PM
What's wrong with it ?

FrozenCreations
08-28-2005, 02:07 PM
it dosent show up /;

also, i think i need an else code, to make it so if there part of an aditional group.. #'s (69 70 71 72) (registered users # - 2)

FightRice.com
08-29-2005, 12:43 AM
<if condition="$bbuserinfo[usergroupid] = 2">TEXT</if>

:dunno:

FrozenCreations
08-29-2005, 12:57 AM
if thats not spam what is /;

lol...

my hunch is that it has somethign to do wiht $bbuserinfo

Paul M
08-29-2005, 03:04 AM
What exactly doesn't work ?

Brad
08-29-2005, 03:18 AM
<if condition="$bbuserinfo[usergroupid] = 2">TEXT</if>

:dunno:

That only works with primary usergroups, you should use this instead:

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

FrozenCreations
08-29-2005, 03:53 PM
Templates Tryed: header and headinclude
<if condition="is_member_of($bbuserinfo, 2)">
<p>Welcome $bbuserinfo[username],
we hope you enjoy your stay, rember to check out your clan! If you dont have one, please go <a href="profile.php?do=editusergroups" alt="Clan Options">Here</a>.</p></if>

ok, please tell me what went wrong there? lol, i put that in, log out of my account, loginto a guest account, loot at the header, and nothing is there

Paul M
08-29-2005, 04:54 PM
Guests are usergroup 1, not 2.

Edit: Actually, I'm not sure you mean Guests - what exactly is a "Guest Account" ?

FrozenCreations
08-29-2005, 05:25 PM
no, im talking about the register usergroup, it shows a message to members in the "Register Usergroup" / id#2

id like the message to appear to the registered users only :)

Paul M
08-29-2005, 05:32 PM
Assuming they are members of usergroup 2 then there is nothing wrong with the code that I can see. It certainly won't work in headinclude, but should work in the header (tho personally I would probably put it in the navbar or forumhome templates).

FrozenCreations
08-29-2005, 05:42 PM
oh, ok :) thanks! that helps!

EDIT: could somone make me the code that would go in the nav bar? (userid #2) , i just tryed and got and got a screwed up navbar /; ... i really would like if if somone gave me the code!

CarolinaKid
08-29-2005, 09:24 PM
if i wanted to use this code <if condition="is_member_of($bbuserinfo, 6)">
<td class="vbmenu_control"><a href="$vboptions[homeurl]/LINK/">LINK</a></td>
</if>

only have it fr like usergroups 5, 6 , 7, 10, 16 how would i go about that
Would have to put in a line for each group or is they a way to combine them
*edit* I think I have Figured it out Using this Code
<if condition="(is_member_of($bbuserinfo, 5)|| is_member_of($bbuserinfo, 6) || is_member_of($bbuserinfo, 7) || is_member_of($bbuserinfo, 10) || is_member_of($bbuserinfo, 16))">
<td class="vbmenu_control"><a href="$vboptions[homeurl]/LINk/">LINK</a></td>
</if>

If anyone sees a problem with that let me know

FrozenCreations
08-29-2005, 11:27 PM
ok, is there a special command for aditional usergroups?


dood, it worked!!! thanks a ton! your so much help! , i was wondering another if command :)

ill put it in a sentence

if a user is in x aditional usergroup, it will show a diffrent message then the 1 for its primary usergrou[ :)

Darkwaltz4
08-30-2005, 12:41 AM
ooh, is_member_of will be useful, one of the few things i still havent caught on to yet :-p

so before i go using it, whoever uses it, does this check the primary usergroup in addition to the secondary ones ? :-p

Adrian Schneider
08-30-2005, 12:42 AM
ooh, is_member_of will be useful, one of the few things i still havent caught on to yet :-p

so before i go using it, whoever uses it, does this check the primary usergroup in addition to the secondary ones ? :-p

Yes it does. :)

FrozenCreations
08-30-2005, 01:22 AM
yeah, i juts used it, its awesome!

i got my question figured out

i have Primary members in Resistered Users (id#2), some of them are part of an aditional group, how do i set a is_member_of tag, 2 display 2 the members that are only loyal 2 Registered Users?

Adrian Schneider
08-30-2005, 01:32 AM
<if condition="$bbuserinfo['usergroupid'] == 2">this will only show to users who have a primary group of Registered Users</if>

^ if I understand you correctly...

FrozenCreations
08-30-2005, 04:07 AM
no, thats not right, i dont think, never mind ;) ill get it