XF 1.5 Controlling snippet size on tag page?

You would need to edit the various search_result_* templates and edit the snippet length there.
This for example is the search_result_thread template:
Code:
<a href="{xen:link threads, $thread}">{xen:helper snippet, $post.message, 150, {xen:array 'term={$search.search_query}', 'emClass=highlight', 'stripQuotes=1'}}</a>

Change the 150 value to suit.
 
  • Like
Reactions: vij
Top Bottom