• Welcome to ForumKorner!
    Join today and become a part of the community.

Usergroup Color in Welcome Block

Flippy

Active Member
Reputation
0
I think that we should add it so that when your name appears in the welcome block it should be the color of your usergroup. Here is how to do it if this suggestion gets added.

Open global.php and search for:
Code:
lang->welcome_back = $lang->sprintf($lang->welcome_back, build_profile_link($mybb->user['username'], $mybb->user['uid']), $lastvisit);

Replace that with:
Code:
$formatted_username = format_name($mybb->user['username'], $mybb->user['usergroup'], $mybb->user['displaygroup']);
 
$lang->welcome_back = $lang->sprintf($lang->welcome_back, build_profile_link($formatted_username, $mybb->user['uid']), $lastvisit);