The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
![]()
How do I display a user's group membership title (or name) in postbit? I coudn't figure it out how to do it. Is there someone who can help me up with this please?
|
#2
|
||||
|
||||
![]()
*bumps*
Anyone? |
#3
|
||||
|
||||
![]()
*bumps*
|
#4
|
||||
|
||||
![]()
in the postbit (or postbit legacy depending which you use) template find:
Code:
<if condition="$show['avatar']"> <div class="smallfont"> <br /><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="$post[avatarurl]" alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a> </div> </if> Code:
<if condition="$post['usergroupid']==6"><div class="smallfont"><b>Administrator</b></div></if> <if condition="$post['usergroupid']==5"><div class="smallfont"><b>Super Moderator</b></div></if> <if condition="$post['usergroupid']==7"><div class="smallfont"><b>Moderator</b></div></if> <if condition="$post['usergroupid']==8"><div class="smallfont"><b>Banned</b></div></if> <if condition="$post['usergroupid']==2"><div class="smallfont"><b>Member</b></div></if> ![]() |
#5
|
|||
|
|||
![]() Quote:
This works for primary group Code:
<if condition="$post['usergroupid']==10"><div class="smallfont"><b>Furry Friends</b></div></if> This works for all groups Code:
<if condition="is_member_of($post,10)"><div class="smallfont"><b>Furry Friends</b></div></if> |
#6
|
|||
|
|||
![]()
*bumps*
|
#7
|
|||
|
|||
![]()
photongbic:
Thank you! The "is_member_of" function is exactly what I have been looking for all night. I used it to display a badge for VIP members who have a paid subscription. |
#8
|
||||
|
||||
![]()
This can be done without any code changes using the USER RANKS option.
Add user ranks that reflect your usergroups and set them on SHOW. This should also work without having the need to edit templates. :-) |
#9
|
|||
|
|||
![]()
Nice - thanks jluerken. Didn't even think of that. No template changes is much better.
|
#10
|
|||
|
|||
![]()
image please?
|
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|