Add-on Looking for a My Threads Add-on

dougiemac

Active member
Looking for an add-on that will display all threads started by a specific user.

- Preferably one that the user can access quickly and easily from their profile with a "My Threads" tab.
- Also one that could be accessed by the user menu, similar to the "Your Content" that displays all posts.

I can't believe there isn't an add-on like this already or am I overlooking something?

All I can find is this German add-on: https://xenforo.com/community/resources/show-me-my-threads.4960/

Thanks!
 
That addon is not German, by default the phrase is in English but the German rephrasing is included. So you could use that addon.

Also in your profile you can already find the threads. The information tab has that info.

And you can always edit templates and place this link anywhere you want (which I got from Brogan while ago):
Code:
  <a href="{xen:link search/member, '', 'user_id={$user.user_id}', 'content=thread'}" rel="nofollow">{xen:phrase your_threads}</a><br>

Also you could maybe use this addon, which is you are looking for I guess:
https://xenforo.com/community/resources/post-areas.4152/
 
Okay this add-on didn't do exactly what I had hoped.

Looking for something that creates a tab on the users profile that lists all of that user's threads that they started.

Also a link in the username drop down menu that currently houses Your Content.
 
Just a suggestion, but my first thought is to use an add-on which can add a Tab to the Navigation Bar.(i.e. Custom Tabs -or- Quick Links)

Then, find/use the code for the existing link on the user's profile page (i.e. Find all content by {name}) to create a dynamic link for whatever user is logged in and clicks on the new Tab.

Code:
LINK would be - http://yourdomain/forums/search/member?user_id=x
CODE might be - <li><a href="{xen:link search/member, '', 'user_id={$user.user_id}'}" rel="nofollow">{xen:phrase find_all_content_by_x, 'name={$user.username}'}</a></li>

Just a guess though, as I'm not a coder. ;)
 
Last edited:
Top Bottom