MyBB Community Forums

Full Version: How do I link to a self-search for every user. Odd to explain, view the thread!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello everyone!

I am attempting to have a feature where users can click "My Posts!", and "My Threads!" and it would actually link to the posts they have made, and the threads they have started.

I am unaware how to make this universal link, for everyone to be able to use it for their account.

Can someone assist me with this?

Thank you so much for your time.

Farewell!
<li><a href="search.php?action=finduser&uid={$mybb->user['uid']}">My Posts</a></li>
<li><a href="search.php?action=finduserthreads&uid={$mybb->user['uid']}">My Threads</a></li>
(2018-10-04, 08:40 PM)iAndrew Wrote: [ -> ]<li><a href="search.php?action=finduser&uid={$mybb->user['uid']}">My Posts</a></li>
<li><a href="search.php?action=finduserthreads&uid={$mybb->user['uid']}">My Threads</a></li>

Thank you so much!

Farewell!