Gossamer
Active member
Now that my forum is live, I'm coming up with many new questions.
On the profile postings page, there are links at the bottom for "Find all content by user" and "Find all threads by user". Is it possible to add a new option there for "Find all threads involving user". i.e. I basically want a search there that's the equivalent of searching the whole forum for a person's posts and showing the results as threads.
In searching the templates, I did find this:
Just not sure how to format a new option, if possible.
On the profile postings page, there are links at the bottom for "Find all content by user" and "Find all threads by user". Is it possible to add a new option there for "Find all threads involving user". i.e. I basically want a search there that's the equivalent of searching the whole forum for a person's posts and showing the results as threads.
In searching the templates, I did find this:
Code:
<li><a href="{xen:link search/member, '', 'user_id={$user.user_id}'}">{xen:phrase find_all_content_by_x, 'name={$user.username}'}</a></li>
<li><a href="{xen:link search/member, '', 'user_id={$user.user_id}', 'content=thread'}">{xen:phrase find_all_threads_by_x, 'name={$user.username}'}</a></li>