We used to have a functionality that seems to be missing now.
When someone searches for some keyword on the forums, and that keyword is found many times in a thread, there was a link shown, which redirected to the search thread page. This is now missing.
Basically we are having problems with the following code (Copy from the “Search Result Rows” default template).
{if reply_results == 0}
{topic_type}<a href="http://{path:view_thread}" title="{topic_title}"><b>{topic_title}</b></a>
{if:elseif reply_results < 6}
{topic_type}<a href="http://{path:view_thread}" title="{topic_title}"><b>{topic_title}</b></a>
<span class="smallLinks">{lang:found_in} <ul>{include:reply_results}</ul></span>
{if:else}
{topic_type}<a href="http://{path:view_thread}" title="{topic_title}"><b>{topic_title}</b></a>
<span class="smallLinks">{lang:found_in_many} - <a href="http://{path:search_thread}">{lang:search_thread}</a></span>
{/if}It seems that we never get anything but the reply_results == 0 condition.
I tried setting the value 6 to 3, but even then it did not work.
We have several keywords that are used a lot, and I am 100% sure that we should be seeing the “search_thread” links a lot.