If you are using other module for layered navigation (example Amasty, Manadev), you may find a conflict with Klevu’s search result page URL.
Issue:
To resolve the issue, please follow the steps below.
- Open <Magento-installation-folder>/app/code/community/Klevu/Search/etc/config.xml file
In config.xml file:
Replace
<frontName>search</frontName>
With
<frontName>searchresult</frontName>
- Open <Magento-installation-folder>/app/design/frontend/base/default/klevu/search/form_js.phtml file
- In form_js.phtmlfile:
Replace
$url = Mage::getUrl('search', array( '_secure' => Mage::app()->getFrontControlle
r()->getRequest()->isSecure() )); With
$url = Mage::getUrl('searchresult', array( '_secure' => Mage::app()->getFrontControlle
r()->getRequest()->isSecure() ));
Please do let us know if you need any help.