MyBB Community Forums

Full Version: Profilelink on Indexpage HELP!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello all!
I'd like to do the following: A link to users own profile. This link allready exists in UserCP: Misc- last entry.
Code for it should be something like that:
<a href="{$profile_link}">Profile</a>
But if I add this code to my header the link will go to the index.php

I tried to load the functions by simply writing this into index.php:
require_once MYBB_ROOT."inc/functions_user.php";

But it didn't work.

I played arround with that stuff for half an hour now and now I'm tired lol.

If anybody could tell me how to implement it and what I exactly need to fill in it would be great.

Thanks in advantage
LS 134
You'll have to use something a bit longer then that:

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

That'll do the trick.
Thank you Smile Works perfectly well.