Support Forums

Full Version: [How To] [MyBB] Username with Profile Link auto
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
You must have wondered how to get the username and profile link automatically in themes.

Well here it is ( a member asked for it and i think i should spread it here too )

Code:
<a href="{$mybb->settings['bburl']}/member.php?action=profile&uid={$mybb->user['uid']}">{$mybb->user['username']}</a>

Many of you may not find is useful ( me too ) but yes its for tutorial purpose.
There's lots of MyBB variables that you can use. On my forum i've got rep and post count in the top right header block.

Code:
{$mybb->user['postnum']}
Code:
{$mybb->user['reputation']}