Disable redirect to product page instead of search results page

If there is only one search result, WooCommerce will redirect the user directly to the product page. This is a WooCommerce feature. You can disable it by applying the following snippet:

add_filter( 'woocommerce_redirect_single_search_result', '__return_false' );

Learn how to add this snippet to your WordPress.