Hi there,
We currently have the search results page set up that the results are only listed with their KB-no, instead of the actual title of the knowledge base item.
If there are multiple results, this is not very user friendly and why we want to change it to contain also the title of the knowledge base item. I found the following in code:
<ul class='search-results'>
{% for result in searchindex.results %}
<li>
<h4>
<a title='{{ result.title | escape }}' href='{{ result.url | escape }}'>{{ result.title }}</a>
</h4>
<p class='fragment'>{{ result.fragment }}</p>
</li>
{% endfor %}
</ul>
But I have no idea what to fill in with <a title> so that it also contains the name of the KB item.
Any assistance?
Thanks,
Robbert