vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Show a user's group membership (https://vborg.vbsupport.ru/showthread.php?t=106741)

Snake 01-30-2006 07:33 PM

Show a user's group membership
 
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?

Snake 02-01-2006 11:42 AM

*bumps*

Anyone?

Snake 02-05-2006 03:35 PM

*bumps*

ZombieAndy 02-05-2006 09:36 PM

in the postbit (or postbit legacy depending which you use) template find:

Code:

<if condition="$show['avatar']">
                                <div class="smallfont">
                                        &nbsp;<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>

and below it add:

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>

changing the user group ID's to match your own. you'll find them in the usergroup manager.

:)

photongbic 02-24-2006 07:41 PM

Quote:

This works great if you are checking for a primary usergroup but how do you check if they have an additional membership to a custom group?

For example, the user is in the "Registered Users" group (id=2) and the "Furry Friends" group (id=10). "Registered Users is their primary group. I wish to show that they are in both groups. How do I do that?
In the above example, the code would be changed from...

This works for primary group
Code:

<if condition="$post['usergroupid']==10"><div class="smallfont"><b>Furry Friends</b></div></if>
to...
This works for all groups
Code:

<if condition="is_member_of($post,10)"><div class="smallfont"><b>Furry Friends</b></div></if>
Have fun!

nader 11-26-2006 10:56 AM

*bumps*

ErikTheRed 11-27-2006 06:36 AM

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.

jluerken 11-27-2006 09:23 AM

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. :-)

ErikTheRed 11-27-2006 09:43 AM

Nice - thanks jluerken. Didn't even think of that. No template changes is much better.

stan111 02-01-2007 12:44 AM

image please?


All times are GMT. The time now is 01:44 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01190 seconds
  • Memory Usage 1,730KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_code_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete