PDA

View Full Version : Image In Postbit For dditional usergroups


lolzers
11-04-2007, 02:06 AM
I have the following code, how do I make it so when a user decides to join one additional usergroup, that an image shows up in there. I have the following code, but it isnt working.

<if condition="is_member_of($bbuserinfo, 93)"><img src="imagesource" alt="althere" /></if>

<if condition="is_member_of($bbuserinfo, 90)"><img src="imagesource" alt="althere" /></if>

<if condition="is_member_of($bbuserinfo, 92)"><img src="imagesource" alt="althere" /></if>

<if condition="is_member_of($bbuserinfo, 91)"><img src="imagesource" alt="althere" /></if>

Awjvail
11-04-2007, 02:23 AM
<if condition="is_member_of($vbulletin->userinfo, usergroup id number here)">This will only be visible to people in the usergroup which you specified
</if>

So for example if I want groups 5, 6 and 7 to be able to see something, I would go:

<if condition="is_member_of($vbulletin->userinfo, 5,6,7)">This will only be visible to people in usergroups 5,6 and 7
</if>

stick that where you want to in the postbit

lolzers
11-04-2007, 10:59 AM
Thanks but:

I want everybody to be able to see it. But when they join a public group, an image in the postbit will appear for that user, and he/she as well as everyone can see it.

Opserty
11-04-2007, 12:07 PM
You want it to be based on the usergroup of the user who made the post?

Then you use:

<if condition="is_member_of($post, 5, 7, 8)">
<img src="path/to/image" alt="" />
</if>

That will show everyone that the person who made the post is a member of group 5 or 7 or 8.

lolzers
11-04-2007, 03:19 PM
I want it so like:

Say I joined the additional usergroup "Red". Then, in the postbit, under the reputation an image will appear. Everyone can see it, but you can only get that image under your reputation if you join that group.

Kirk Y
11-04-2007, 07:06 PM
Use Opserty's code, that'll do what you're looking for.

lolzers
11-04-2007, 07:22 PM
Okay, so I have the following code in my postbit, but the code posted doesnt seem to be working.

Heres the code:

<!-- / flags + streets start -->
<div>
<if condition="$post[field6]"><a href="www.habbo.$post[field6]"><img src="images/flags/$post[field6].gif"></a></if>

<if condition="$post[field7]"><a href="www.habbo.com/home/$post[field7]"><img src="images/flags/US.gif"></a></if>

<if condition="$post[field8]"><a href="www.habbo.ca/home/$post[field8]"><img src="images/flags/CA.gif"></a></if>

<if condition="$post[field9]"><a href="www.habbo.co.uk/home/$post[field9]"><img src="images/flags/UK.gif"></a></if>

<if condition="$post[field10]"><a href="www.habbo.com.au/home/$post[field10]"><img src="images/flags/AU.gif"></a></if>

<if condition="$post[field11]"><a href="www.habbo.com.sg/home/$post[field11]"><img src="images/flags/SG.gif"></a></if>

<if condition="is_member_of($post, 6)">
<img src="images/clan/snl.gif" alt="" />
</if>
</div>
<!-- / flags + streets end -->

Hamednet
11-18-2007, 07:52 AM
thanks

How do I this ?

https://vborg.vbsupport.ru/external/2007/11/16.gif