MyBB Community Forums

Full Version: Profile link
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do i add i profile link in the navigation so the login user can visit there profile really easy?

the code i have used it
<li><a href="{$profile_link}">Profile</a></li>

But it dont work?
The website is
http://rollercoastermad.com/forum/index.php
You need {$mybb->board_url}/ before the profile link iirc. Note that I think it's that, not completely sure though.
Nope thats not it, that just makes the link take you to the home page of the site even thought the board URL is http://rollercoastermad.com/forum
This will give you the logged in users username as a link to their own profile. Smile

<a href="{$mybb->settings['bburl']}/member.php?action=profile">{$mybb->user['username']}</a>
Ah thank you Smile
I have moved it so you wont see it anymore as having it on a bit of code that can been by people who are not even logged in not a good idea.