MyBB Community Forums

Full Version: View Your Posts
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
What would be the correct way to create a link in the welcome block for "View Your Posts" so a use can click it and see all their posts?

also why doesnt myBB have this as a default option?, if I want to view all the posts I have made and see if anyone has replied, I have to scroll to the bottom of the page to see my name in the "who's online" click to view my profile, then click "find all posts", just seems a long winded way.
In Admin CP --> Templates (Modify / Delete) --> Your Template Name (click on Expand)--> header_welcomeblock_member template:

Find:
 | <a href="{$mybb->settings['bburl']}/search.php?action=getdaily">{$lang->welcome_todaysposts}</a>

After, add this:
 | <a href="search.php?action=finduser&uid={$mybb->user['uid']}">View Your Posts</a>

Smile
your a gentleman (or lady) and sholar.

Thank you so much, worked perfectly.