Open navigation

Search Page URL Conflict with Third-Party Module

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.

  1. Open <Magento-installation-folder>/app/code/community/Klevu/Search/etc/config.xml file
  2. In config.xml file:

    Replace

    <frontName>search</frontName>

    With

    <frontName>searchresult</frontName>
  3. Open <Magento-installation-folder>/app/design/frontend/base/default/klevu/search/form_js.phtml file
  4. In form_js.phtmlfile:

    Replace

    $url = Mage::getUrl('search', array(
     '_secure' => Mage::app()->getFrontController()->getRequest()->isSecure()
     ));

    With

    $url = Mage::getUrl('searchresult', array(
     '_secure' => Mage::app()->getFrontController()->getRequest()->isSecure()
     ));

Please do let us know if you need any help.

Did you find it helpful? Yes No

Send feedback
Sorry we couldn't be helpful. Help us improve this article with your feedback.