MyBB Community Forums

Full Version: Make link to users profile.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to make a link at the header that goes to the users profile.

Any idea how to do that?
To make it "Welcome Back, <Username with link> go to your theme's template>Welcome Block>Welcome_Block_Member.
find this code
{$lang->welcome_back}
and change it to this.
<b>Welcome Back, <a href="{$mybb->settings['bburl']}/member.php?action=profile&uid={$mybb->user['uid']}">{$mybb->user['username']}</a></b><br />
Edit : not seen above response Smile
____________________________

Welcome Back text to have it as a profile link

Quote:In global.php.

Change this:
$lang->welcome_back = $lang->sprintf($lang->welcome_back, $mybb->user['username'], $lastvisit);

To this:
$lang->welcome_back = $lang->sprintf($lang->welcome_back, build_profile_link($mybb->user['username'], $mybb->user['uid']), $lastvisit);
(2011-06-21, 02:57 AM)ranjani Wrote: [ -> ]Edit : not seen above response Smile
____________________________

Welcome Back text to have it as a profile link

Quote:In global.php.

Change this:
$lang->welcome_back = $lang->sprintf($lang->welcome_back, $mybb->user['username'], $lastvisit);

To this:
$lang->welcome_back = $lang->sprintf($lang->welcome_back, build_profile_link($mybb->user['username'], $mybb->user['uid']), $lastvisit);
Core edit's area really not needed, my solution is super easy and easy to fix if a mistake is made.

Thanks to both of you Big Grin