How do you sort xF Watched Threads?

Fufu

Well-known member
I am trying to look for watched threads related to 'X' board or 'X' topic.
How do I sort or categorize?
 
You will need an add-on to do that.
There is no sort functionality for watched threads.
 
If you look under the Forums tab too, it's one of the links to easily get to the page that lists your watched threads.
 
Did you tried to create a custom page with a query like this one?

Code:
SELECT * FROM `xf_thread_watch` INNER JOIN `xf_thread` ON xf_thread_watch.thread_id = xf_thread.thread_id WHERE user_id = '$user_id';

I know this query doesn't work because user_id is duplicated. But you can do it if you split the query in more.
 
Back
Top Bottom