1

I tried to just erase the html markup from the indexed_search template file, this does work fine, until I found out that this causes a Javascript error where I can not use the numeric navigation.
(Page 1 Page 2 Page 3 Next >).

So is there a typoscript command, or a other way, to erase the search form which is on the results page?

Tomkay
  • 5,120
  • 21
  • 60
  • 92

2 Answers2

2

Unfortunately when you empty the search form you won't be able to use the page browser at all. It is using the value from the search form and an offset (basically does a new search with your parameter)

konsolenfreddy
  • 9,551
  • 1
  • 25
  • 36
0

Idea for a workaround: How about hiding the standard search form (that contains the search term) with display:none; and adding a second, empty search form to the template?

Mateng
  • 3,742
  • 5
  • 37
  • 64