MyBB Community Forums

Full Version: change username to a link
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
All I need to know is the code to change the username in the welcome back block in to a link to the users profile page.

Global.php
Quote:$lang->welcome_back = $lang->sprintf($lang->welcome_back, $mybb->user['username'], $lastvisit);

Global.lang.php
Quote:$l['welcome_back'] = "<strong>Welcome back, {1}</strong>. You last visited: {2}";
Change;
<strong>Welcome back, {1}</strong>. You last visited: {2}

to;

<strong>Welcome back, <a href='./member.php?action=profile'>{1}</a></strong>. You last visited: {2}
Thank you very much you are a legand
Rep to you