如何删除indexed_search搜索结果页面上的搜索表单?
我尝试从 indexed_search 模板文件中删除 html 标记,这确实工作正常,直到我发现这会导致 Javascript 错误,导致我无法使用数字导航。
(第 1 页第 2 页第 3 页下一页 >)。
那么是否有打字命令或其他方式来删除结果页面上的搜索表单?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(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)
解决方法的想法:如何使用
display:none;
隐藏标准搜索表单(包含搜索词)并向模板添加第二个空搜索表单?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?