MyBB Community Forums

Full Version: Display usergroup in profile - variables
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello there,

I have a problem with displaying usergroup variables. I want to add a user group name/title to my member profiles.

I tried to add in member_profile template the following variables:

{$mybb->usergroup['usertitle']} and {$mybb->usergroup}.

Unfortunately they showed me "Administrator" and "Administrators" everywhere. Even in regular users profiles, moderators etc.

What did I wrong?
$mybb->user contains information about current user browsing your forum. So you saw Admin rank everywhere because you are admin.

Use {$memprofile['usertitle']} or {$displaygroup['usertitle']} and [b]{$memprofile['usergroup']} instead.