Well, finally, we can do this now
The basic concept maybe like this:
So, we can use it for several purposes:
1. Displaying Thread By Thread Author:
To do this, find this code in our forumdisplay_thread template:
Replace it with:
Now, after the thread user name, there is a link for displaying all threads by that user in that forum id.
2. Displaying All My Threads In This Forum (Link In Threadlist):
We can put this kinds of URL directly in our forumdisplay_threadlist template:
Now, when our users viewing a threadlist, they can click the link to display all threads by them. We can use it for our XThreads application.
Example for Images Gallery:
Maybe it is better to use conditional there, so, only member can view the link.
3. Displaying All Threads By A Member In A Forum (Link In Profile Page):
Put this kinds of URL directly in our member_profile template:
Replace forum_id with a forum ID.
Now, each user has a link in their profile page to a specified forum id to display their threads only. We can use it for our XThreads application.
Example:
Images Gallery -> Forum ID = 9:
4. Displaying All Threads By A Member In A Forum (Link In Postbit):
Put this kinds of URL directly in our postbit template:
Replace forum_id with a forum ID.
Now, each user has a link in their postbit to a specified forum id to display their threads only. We can use it for our XThreads application.
Example:
Images Gallery -> Forum ID = 9:
Maybe it is better if we put conditional there, so, the link will not be displayed if the post author is a guest.