MyBB Community Forums

Full Version: What code will show the user's group name?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have a text box for different groups on my forum. I can already personalize it to show their username, but now I need to show their group name. I tried the following, which shows the group number:

{$mybb->user['usergroup']}

What do I need to change 'usergroup' to so that the group name will show instead?
Should be able to use

$mybb->usergroup['title']
Thanks, Matt, I knew it had to be something simple but couldn't manage to find it. Smile