Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1282929

    I would like to use the Advanced Woo Search plugin in the main, search area of the Enfold theme. I got some of it to work, but it wont pull up a search page.

    Can someone help me?

    #1283640

    Hey natas442,

    Thank you for the inquiry.

    The search seems to be working properly on our end, but if you want to disable the AJAX search, please include this snippet in the functions.php file.

    
    function avf_frontend_search_form_param_mod($params)
    {
      $params['ajax_disable'] = true; // disable ajax search
      return $params;
    }
    add_action('avf_frontend_search_form_param', 'avf_frontend_search_form_param_mod',9);
    

    Best regards,
    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.