0
votes

I am using TYPO3 6.2 and the indexed_search extension. I am wondering if there is the possibility to change how the search results get displayed? For example I have the problem that some words in the results don't have spaces inbetween them.

  • list item 1
  • list item 2
  • list item 3

something like this turns into

list item 1list item 2list item3

in the search results. How can this bug be fixed?

2

2 Answers

3
votes

I think you just need to copy template of index search from typo3/sysext/indexed_search/pi/indexed_search.html as well as Resource folder and put it into fileadmin or any directory that you want, than use following typoscript

plugin.tx_indexedsearch{
 templateFile = fileadmin/{your_template_name}.html
}

In this way you can modify template according to your requirement.

0
votes

First of all, declaring this as a bug is a little too hard.

Check your CSS, seems like all li in ul are floating left without any margin and padding.

You can set the indexed_search template within the maintemplate of your page. Check out the docs.