MyBB Community Forums

Full Version: Show Name Of Usergroup And Rep Count In Welcomeblock
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: 4a2e5bcd8c7e5eea5eb2bbbc915405b6.png]

As per the above image, i would like to show the users group ID and rep count in the welcomeblock.

I can't figure out how to get them to show properly. If i use {$reputation} it doesn't show up, neither does {$user['reputation']}.

I also do not know the code for groups, could someone help?
$mybb->user is the current user and $mybb->usergroup is his current group. The fields are based on columns in users/usergroups tables:
http://docs.mybb.com/Database_Tables-mybb_users.html
http://docs.mybb.com/Database_Tables-myb...roups.html

So you need:
{$mybb->user['postnum']}
{$mybb->user['reputation']}
{$mybb->usergroup['title']}
Thank you man, that solved it! Now, I don't think the it is possible considering the way I have done it, but it it possible to colorize it? For instance the rep color would be the same as on the profile page and the group name the same color as it would be on the profile.