XF 1.1 Your content for search this thread

Matthew2D

Well-known member
Hello. I'm trying to add an option for finding your post in a certain thread. When i click on the link, it comes up with all the member's posts. This is the code I'm using.

Code:
<li><a href="{xen:link search/member, '', 'type=post', 'thread_id={$thread.thread_id}', 'user_id={$visitor.user_id}'}">{xen:phrase your_content}</a></li>

Any suggestions.
 
Code:
<li><a href="{xen:link search/search, '', 'type=post', 'thread_id={$thread.thread_id}', 'users={$visitor.username}'}">{xen:phrase your_content}</a></li>
 
Top Bottom