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?
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