woocommerce_checkout_no_payment_needed_redirect

woocommerce_checkout_no_payment_needed_redirect

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

apply_filters('woocommerce_checkout_no_payment_needed_redirect') is found 2 times:

  • /includes/class-wc-checkout.php line 1093
    		wc_empty_cart();
    
    		if ( ! wp_doing_ajax() ) {
    			wp_safe_redirect(
    				apply_filters( 'woocommerce_checkout_no_payment_needed_redirect', $order->get_checkout_order_received_url(), $order )
    			);
    			exit;
    		}
    
    		wp_send_json(
    			array(
    
  • /includes/class-wc-checkout.php line 1101
     
    		wp_send_json(
    			array(
    				'result'   => 'success',
    				'redirect' => apply_filters( 'woocommerce_checkout_no_payment_needed_redirect', $order->get_checkout_order_received_url(), $order ),
    			)
    		);
    	}
    
    	/**
    	 * Create a new customer account if needed.