MyBB Community Forums

Full Version: Removing certain links from the header template
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
<span class="welcome">{$mybb->user['username']}<a href="{$mybb->settings['bburl']}/member.php?action=logout&amp;logoutkey={$mybb->user['logoutkey']}" class="logout">{$lang->welcome_logout}</a></span>
That's almost what I want. It's just missing the bold (I can do that), and the link to the profile.
Solved then? Or do you need to know how to do the profile link?
Yeah, I just need the profile link, and everything should be dandy.
<span class="welcome"><a href="{$mybb->settings['bburl']}/member.php?action=profile">{$mybb->user['username']}</a><a href="{$mybb->settings['bburl']}/member.php?action=logout&amp;logoutkey={$mybb->user['logoutkey']}" class="logout">{$lang->welcome_logout}</a></span>
Beauty!
Pages: 1 2