Home Forums WoodMart support forum Stop Auto-Redirect when Search Query Only Returns 1/ 0 result

Stop Auto-Redirect when Search Query Only Returns 1/ 0 result

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #202705

    razib
    Participant

    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.

    #202711

    Artem Temos
    Keymaster

    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

Viewing 2 posts - 1 through 2 (of 2 total)