MyBB Community Forums

Full Version: Accessing the "Topics About Me"
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
In the MyBB forum, I would like to add a link in the header section (next to the "View New Posts" and "View Today's Posts" links): Topics Related to Me.

When a user clicks on this link, I want it to list a list of the topics he/she has opened or posted in, based on the last updated topic. Otherwise, users have a hard time keeping track of the topics he/she has posted in. How can we find a solution to this?
Add this to your "header_welcomeblock_member" template:
<a href="search.php?action=finduserthreads&uid={$mybb->user['uid']}">Topics Related to Me</a>

Not recommending placing it directly to header template as this is irrelative to guests.
(2024-03-10, 10:45 PM)effone Wrote: [ -> ]Add this to your "header_welcomeblock_member" template:
<a href="search.php?action=finduserthreads&uid={$mybb->user['uid']}">Topics Related to Me</a>

Not recommending placing it directly to header template as this is irrelative to guests.

I didn't think it would be so easy, thank you <3