Stop Auto-Redirect when Search Query Only Returns 1/ 0 result
-
When I search for something, sometimes it redirects me to a single product page instead of the search result page. I think it happens when the query match only 1/0 products.
How to stop it? If code modification is required, then feel free to guide me.
Note: I am using a child theme, latest WP, WC & Woodmart.
Thank you.
Hello,
Thank you so much for contacting our support center.
It is a default WooCommerce function and if you want to disable it try to add the following code snippet to the functions.php file in your child theme
add_action(
'init',
function() {
add_filter( 'woocommerce_redirect_single_search_result', '__return_false' );
}
);
Kind Regards
XTemos Studio