woocommerce_is_checkout

woocommerce_is_checkout

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

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

apply_filters('woocommerce_is_checkout') is found 1 times:

  • /includes/wc-conditional-functions.php line 112
    	 */
    	function is_checkout() {
    		$page_id = wc_get_page_id( 'checkout' );
    
    		return ( $page_id && is_page( $page_id ) ) || wc_post_content_has_shortcode( 'woocommerce_checkout' ) || apply_filters( 'woocommerce_is_checkout', false ) || Constants::is_defined( 'WOOCOMMERCE_CHECKOUT' );
    	}
    }
    
    if ( ! function_exists( 'is_checkout_pay_page' ) ) {
    
    	/**