horace
horace

Reputation: 543

TYPO3 6.2 indexed_search templates?

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.

something like this turns into

list item 1list item 2list item3

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

Upvotes: 0

Views: 1294

Answers (2)

Vivek Parmar
Vivek Parmar

Reputation: 771

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.

Upvotes: 3

Merec
Merec

Reputation: 2761

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.

Upvotes: 0

Related Questions