Hallo, ich habe folgendes Problem:
Ich möchte das Plugin “Advanced Woo Search” im Hauptmenü über das Plugin “Shortcode in Menus” einblenden.
Im Hauptmenü erscheint es eine Milisekunde und verschwindet dann. Habe hier nachgelsen und folgenden Post gefunden bei dem Ismael sagt er hätte es direkt beim Kunden gefixed: https://kriesi.at/support/topic/search-bar-permanently-open/
Gibt es da einen “Workaround” den man hier öffentlich machen könnte?
Hi Georg!
Thank you for using Enfold.
Please try to use the “avf_frontend_search_form_param” filter in the functions.php file. It will disable the ajax search.
add_action('avf_frontend_search_form_param', 'av_disable_ajax_search',9);
function av_disable_ajax_search($params)
{
$params['ajax_disable'] = true;
return $params;
}
Best regards,
Ismael
Hi I am also trying to use “Advanced Woo Search” I have added the code, is there anything else I have to do?
Hi,
The code above should disable the default AJAX search from the theme, but extra modification might be needed if the plugin requires it. If you need more help, please feel free to create a new thread or ticket, and post the details in the private field so that we could check the site properly.
Best regards,
Ismael