MyBB Community Forums

Full Version: Add a link to nav bar to account
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, how do you add a link to a users profile, like have a link in the nav bar the when anyone clicks on it, it will take them to there profile. Also I'm using google seo.
<a href="member.php?action=profile&uid={$mybb->user['uid']}">{$mybb->user['username']}</a>
(2013-01-12, 07:49 AM)effone Wrote: [ -> ]<a href="member.php?action=profile&uid={$mybb->user['uid']}">{$mybb->user['username']}</a>

Thanks, also how do you hide links in the nav bar from guests?
Include the link in "header_welcomeblock_member" template.

Or use template conditions with a condition check using user group id.
(2013-01-12, 08:20 AM)effone Wrote: [ -> ]Include the link in "header_welcomeblock_member" template.

Or use template conditions with a condition check using user group id.

At the bottom and that's it?