MyBB Community Forums

Full Version: Display (own) username
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
So what I want is the function of {$lang->welcome_back} but withouht the "Welcome back.." text... before I simply removed the text in the language file but since I'm working on a theme I plan on releasing, I'd need an alternative.
Thanks in advance! Smile
{$mybb->user['username']}
(2012-12-14, 02:08 PM)crazy4cs Wrote: [ -> ]{$mybb->user['username']}

Nice and how do I link to the profile?
<a href="member.php?action=profile&amp;uid={$mybb->user['uid']}">{$mybb->user['username']}</a>
(2012-12-14, 06:41 PM)crazy4cs Wrote: [ -> ]
<a href="member.php?action=profile&amp;uid={$mybb->user['uid']}">{$mybb->user['username']}</a>

Thanks again. Smile