MyBB Community Forums

Full Version: Display a user's thread from a forum.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
My forum is: promotionparadise.net (offline, but for support eligibility purposes) 

I want to have a link somewhere in the header for like Site Submissions from a promotion dictionary forum. So when a user clicks on the link, it only displays their threads from that forum. Thanks! Smile
This link will direct to a users threads:
{$mybb->settings['bburl']}/search.php?action=finduserthreads&uid={$mybb->user['uid']}

This link will direct to a users posts:
{$mybb->settings['bburl']}/search.php?action=finduser&uid={$mybb->user['uid']}


This is all globally though, so I'm not sure how you would limit it to just a boards threads or posts.
{$mybb->settings['bburl']}/search.php?action=finduser&uid={$mybb->user['uid']}={$mybb->forum['6']}

I tried using this, but no luck. lol
You'll need a plugin for that, because right now the only way to search a user's posts/threads by fid is built into the search page where you manually select the forums you want.
would be cool to know how to link user's threads from postbit