I want to disable ajax search automatic results please can you help me?
i use the main bar seacrh menu but i want it not to show automatic results or maybe the results in other order
Hi pabloeduardo,
Please have a look at the following thread:
If you need further assistance please let us know.
Best regards,
Victoria
I guess he doesn’t want to have result suggestions under the search box.
try this in child-theme functions.php
add_action('avf_frontend_search_form_param', 'av_disable_ajax_search',9);
function av_disable_ajax_search($params)
{
$params['ajax_disable'] = true;
return $params;
}
Hi,
Thanks for helping out @guenni007. Did you try that out and did you have any luck with it @pabloeduardo?
Best regards,
Rikard