Flippy Active Member Joined Apr 5, 2012 Posts 2,032 Reacts 11 Reputation 0 Credits 231 Sep 17, 2013 #1 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);
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);