hello
I tried to disable this module output in settings to disable catalog search form in header
but there is no effect, mini form and footer links are still there
tested on Magento CE 1.7.0.2 and 1.9.1.0, cleared caches
I know how to do it with layout or template, just want to know if I forgot something to do it that way...
Solved! Go to Solution.
Hi @aurmil
By disabling did you mean from the admin?.
The catalogsearch quick search is one of the few blocks in Magento not belonging to its own module for some reason ;-). So disabling the module in the admin wont work.
instead go to your template's local.xml file and insert the following. If your template doesn't use some sort of special name for the search box then this should remove it.
<default> <remove name="top.search" /> </default>
I hope this helps :-)
Hi @aurmil
By disabling did you mean from the admin?.
The catalogsearch quick search is one of the few blocks in Magento not belonging to its own module for some reason ;-). So disabling the module in the admin wont work.
instead go to your template's local.xml file and insert the following. If your template doesn't use some sort of special name for the search box then this should remove it.
<default> <remove name="top.search" /> </default>
I hope this helps :-)
Hello @aurmil ,
Try to disable it from xml file and then check
/app/etc/modules
Set false in place of true.
disabling module in app/etc/modules works as intended
so I think the answer of Theis Corfixen (block badly linked to module, God only knows why ) is correct
let's make it with layout XML
thanks for answers