woocommerce_is_checkout, false

woocommerce_is_checkout, false

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: jetpack.16.0.1

apply_filters('woocommerce_is_checkout, false') is found 2 times:

  • /jetpack_vendor/automattic/woocommerce-analytics/src/class-universal.php line 677
     
    		$is_checkout = $checkout_page_id && is_page( $checkout_page_id )
    			|| wc_post_content_has_shortcode( 'woocommerce_checkout' )
    			|| has_block( 'woocommerce/checkout', $post )
    			|| apply_filters( 'woocommerce_is_checkout', false )
    			|| Constants::is_defined( 'WOOCOMMERCE_CHECKOUT' );
    
    		if ( ! $is_checkout ) {
    			return;
    		}
    
    
  • /modules/woocommerce-analytics/classes/class-jetpack-woocommerce-analytics-checkout-flow.php line 163
    		$is_checkout = $checkout_page_id && is_page( $checkout_page_id )
    		|| wc_post_content_has_shortcode( 'woocommerce_checkout' )
    		|| has_block( 'woocommerce/checkout', $post )
    		|| has_block( 'woocommerce/classic-shortcode', $post )
    		|| apply_filters( 'woocommerce_is_checkout', false )
    		|| \Automattic\Jetpack\Constants::is_defined( 'WOOCOMMERCE_CHECKOUT' );
    
    		if ( ! $is_checkout ) {
    			return;
    		}