PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Notice: ob_end_clean(): Failed to delete buffer. No buffer to delete in /home/telusvwg/public_html/da754d/index.php on line 8
$#$#$#

Dir : /home/telusvwg/alwatnitraders.com/wp-content/themes/woodmart/inc/integrations/
Server: Linux premium279.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
IP: 66.29.132.192
Choose File :

Url:
Dir : /home/telusvwg/alwatnitraders.com/wp-content/themes/woodmart/inc/integrations/cartflows.php

<?php
/**
 * CartFlows integration.
 *
 * @package woodmart
 */

if ( ! defined( 'CARTFLOWS_FILE' ) ) {
	return;
}

if ( ! function_exists( 'woodmart_cartflows_is_checkout_override_enabled' ) ) {
	/**
	 * Checks if CartFlows global checkout override is enabled.
	 *
	 * @return bool True if override is enabled, false otherwise.
	 */
	function woodmart_cartflows_is_checkout_override_enabled() {
		$common_settings = get_option( '_cartflows_common', false );

		return ! empty( $common_settings ) && isset( $common_settings['override_global_checkout'] ) && 'enable' === $common_settings['override_global_checkout'];
	}
}

if ( ! function_exists( 'woodmart_cartflows_disable_checkout_template_override' ) ) {
	/**
	 * Disables theme checkout template override when CartFlows is active.
	 *
	 * @param bool $should_override Whether the theme should override the template.
	 *
	 * @return bool False if CartFlows overrides checkout, original value otherwise.
	 */
	function woodmart_cartflows_disable_checkout_template_override( $should_override ) {
		if ( woodmart_cartflows_is_checkout_override_enabled() ) {
			return false;
		}

		return $should_override;
	}

	add_filter( 'woodmart_replace_checkout_template_condition', 'woodmart_cartflows_disable_checkout_template_override' );
}

if ( ! function_exists( 'woodmart_cartflows_enqueue_checkout_styles' ) ) {
	/**
	 * Enqueues styles for CartFlows checkout pages.
	 *
	 * @return void
	 */
	function woodmart_cartflows_enqueue_checkout_styles() {
		wp_enqueue_style( 'wd-int-woo-cartflows-checkout', WOODMART_THEME_DIR . '/css/parts/int-woo-cartflows-checkout.min.css', array(), WOODMART_VERSION );
	}

	add_action( 'wp_enqueue_scripts', 'woodmart_cartflows_enqueue_checkout_styles', 10001 );
}

if ( ! function_exists( 'woodmart_cartflows_disable_lazy_loading' ) ) {
	/**
	 * Disables lazy loading on CartFlows checkout and order-received pages.
	 *
	 * @return void
	 */
	function woodmart_cartflows_disable_lazy_loading() {
		if ( ! is_checkout() && ! is_wc_endpoint_url( 'order-received' ) && ! ( is_ajax() && isset( $_GET['wc-ajax'] ) ) ) { // phpcs:ignore WordPress.Security
			return;
		}

		if ( woodmart_cartflows_is_checkout_override_enabled() || ( isset( $_GET['wc-ajax'] ) && 'update_order_review' === $_GET['wc-ajax'] ) ) { // phpcs:ignore WordPress.Security
			woodmart_lazy_loading_deinit( true );
		}
	}

	add_action( 'wp', 'woodmart_cartflows_disable_lazy_loading' );
}

if ( ! function_exists( 'woodmart_cartflows_remove_sticky_toolbar' ) ) {
	/**
	 * Removes sticky toolbar on CartFlows checkout and order-received pages.
	 *
	 * @return void
	 */
	function woodmart_cartflows_remove_sticky_toolbar() {
		if ( ! is_checkout() && ! is_wc_endpoint_url( 'order-received' ) ) {
			return;
		}

		if ( woodmart_cartflows_is_checkout_override_enabled() ) {
			remove_action( 'wp_footer', 'woodmart_sticky_toolbar_template' );
		}
	}

	add_action( 'wp', 'woodmart_cartflows_remove_sticky_toolbar' );
}

if ( ! function_exists( 'woodmart_cartflows_remove_skip_to_content_button' ) ) {
	/**
	 * Removes skip to content button on CartFlows checkout and order-received pages.
	 *
	 * @return void
	 */
	function woodmart_cartflows_remove_skip_to_content_button() {
		if ( ! is_checkout() && ! is_wc_endpoint_url( 'order-received' ) ) {
			return;
		}

		if ( woodmart_cartflows_is_checkout_override_enabled() ) {
			remove_action( 'wp_body_open', 'woodmart_get_skip_main_content_button' );
		}
	}

	add_action( 'wp', 'woodmart_cartflows_remove_skip_to_content_button' );
}