MyBB Hacks

Full Version: user profile link on index page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i had a welcome box in index page showing the text

welcome {user}, your last visit, private messages, so and so.... on index page

now i would like to make the {user} text to be linked to that user's profile as when he clicks on that text he must be redirected to his profile.
this happens when we click on the last post users that is displayed forum view in index page.
i tried of adding
<a href="{mybb->user['profilelink']}">{user}</a>
but didnt worked

as like in our forum http://mybbhacks.zingaburga.com/
[attachment=255]

any other solutions?

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

Thank you very much zinga Smile
Reference URL's