Is there a way to make the search bar show specific results
-
Good afternoon, I would like to know if there is a way to make the search bar on the website show specific results.
For Example if someone searches for “GP” or “GP Batteries” I would like to go straight to that brand section on the website.
I believe currently it will not search anything under 3 characters?
Hello,
Please add the following code to your child theme’s functions.php file.
add_filter( 'woodmart_ajax_search_symbols_count', function () {
return 2;
} );
This will allow the AJAX search to start working when the visitor enters 2 or more characters, such as GP.
Best Regards