Disable Redirect to Product Page on Search Results Page in WooCommerce [closed]

Yes, this is totally possible. WooCommerce includes a handy filter that you can manipulate to disable that redirect so the user will continue onto the search results page as per normal.

If you add this line of code to your functions.php file it will disable the redirect functionality.

add_filter( 'woocommerce_redirect_single_search_result', '__return_false' );

Permalink to gist: https://gist.github.com/BFTrick/6429700

Leave a Comment