MyBB Community Forums

Full Version: How would I add your threads and your posts to header_welcomeblock_member template?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
So basically I want to add two new links to the header_welcomeblock_member template that are:
Your Threads
Your Posts

These two new links are already on the member profile but I want to add it to the header_welcomeblock_member template as well to make an easier navigation for users.

Any help guys? Is there some sort of guide?

see here: http://conspiracymind.com
so now

Your Threads

<a href="search.php?action=finduserthreads&uid={$mybb->user['uid']}">Your Threads</a>

Your Posts

<a href="search.php?action=finduser&uid={$mybb->user['uid']}">Your Posts</a>

was helpful ?