Viewing File: /home/fshjisk/voguearth/wp-content/plugins/fusion-builder/shortcodes/woo-checkout-order-review.php

<?php
/**
 * Add an element to fusion-builder.
 *
 * @package fusion-builder
 * @since 3.3
 */

if ( fusion_is_element_enabled( 'fusion_tb_woo_checkout_order_review' ) ) {

	if ( ! class_exists( 'FusionTB_Woo_Checkout_Order_Review' ) ) {
		/**
		 * Shortcode class.
		 *
		 * @since 3.3
		 */
		class FusionTB_Woo_Checkout_Order_Review extends Fusion_Woo_Component {

			/**
			 * An array of the shortcode defaults.
			 *
			 * @access protected
			 * @since 3.3
			 * @var array
			 */
			protected $defaults;

			/**
			 * An array of the shortcode arguments.
			 *
			 * @access protected
			 * @since 3.3
			 * @var array
			 */
			protected $args;

			/**
			 * The internal container counter.
			 *
			 * @access private
			 * @since 3.3
			 * @var int
			 */
			private $counter = 1;

			/**
			 * Constructor.
			 *
			 * @access public
			 * @since 3.3
			 */
			public function __construct() {
				parent::__construct( 'fusion_tb_woo_checkout_order_review' );
				add_filter( 'fusion_attr_fusion_tb_woo_checkout_order_review-shortcode', [ $this, 'attr' ] );

				// Ajax mechanism for live editor.
				add_action( 'wp_ajax_get_fusion_tb_woo_checkout_order_review', [ $this, 'ajax_render' ] );
			}


			/**
			 * Check if component should render
			 *
			 * @access public
			 * @since 3.3
			 * @return boolean
			 */
			public function should_render() {
				return is_singular();
			}

			/**
			 * Gets the default values.
			 *
			 * @static
			 * @access public
			 * @since 3.3
			 * @return array
			 */
			public static function get_element_defaults() {
				$fusion_settings = awb_get_fusion_settings();
				return [
					// General.
					'margin_bottom'                   => '',
					'margin_left'                     => '',
					'margin_right'                    => '',
					'margin_top'                      => '',
					'border_color'                    => '',
					'cell_padding_top'                => '',
					'cell_padding_right'              => '',
					'cell_padding_bottom'             => '',
					'cell_padding_left'               => '',

					// Header.
					'table_header'                    => 'show',
					'header_cell_backgroundcolor'     => '',
					'header_color'                    => '',
					'fusion_font_family_header_font'  => '',
					'fusion_font_variant_header_font' => '',
					'header_font_size'                => '',
					'header_text_transform'           => '',
					'header_line_height'              => '',
					'header_letter_spacing'           => '',

					// Body.
					'display_product_images'          => 'show',
					'table_cell_backgroundcolor'      => '',
					'text_color'                      => '',
					'fusion_font_family_text_font'    => '',
					'fusion_font_variant_text_font'   => '',
					'text_font_size'                  => '',
					'text_text_transform'             => '',
					'text_line_height'                => '',
					'text_letter_spacing'             => '',

					// Footer.
					'footer_cell_backgroundcolor'     => '',
					'footer_color'                    => '',
					'fusion_font_family_footer_font'  => '',
					'fusion_font_variant_footer_font' => '',
					'footer_font_size'                => '',
					'footer_text_transform'           => '',
					'footer_line_height'              => '',
					'footer_letter_spacing'           => '',

					// General.
					'hide_on_mobile'                  => fusion_builder_default_visibility( 'string' ),
					'class'                           => '',
					'id'                              => '',
					'animation_type'                  => '',
					'animation_direction'             => 'down',
					'animation_speed'                 => '0.1',
					'animation_offset'                => $fusion_settings->get( 'animation_offset' ),
				];
			}

			/**
			 * Render for live editor.
			 *
			 * @static
			 * @access public
			 * @since 3.3
			 * @param array $defaults An array of defaults.
			 * @return void
			 */
			public function ajax_render( $defaults ) {
				check_ajax_referer( 'fusion_load_nonce', 'fusion_load_nonce' );

				$return_data = [];
				// From Ajax Request.
				if ( isset( $_POST['model'] ) && isset( $_POST['model']['params'] ) && ! apply_filters( 'fusion_builder_live_request', false ) ) { // phpcs:ignore WordPress.Security.NonceVerification
					$args           = $_POST['model']['params']; // phpcs:ignore WordPress.Security
					$post_id        = isset( $_POST['post_id'] ) ? $_POST['post_id'] : get_the_ID(); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput
					$this->defaults = self::get_element_defaults();
					$this->args     = FusionBuilder::set_shortcode_defaults( $this->defaults, $args, 'fusion_tb_woo_checkout_order_review' );

					fusion_set_live_data();
					add_filter( 'fusion_builder_live_request', '__return_true' );
					$return_data['woo_checkout_order_review'] = $this->get_woo_checkout_order_review_content();
				}

				echo wp_json_encode( $return_data );
				wp_die();
			}

			/**
			 * Render the shortcode
			 *
			 * @access public
			 * @since 3.3
			 * @param  array  $args    Shortcode parameters.
			 * @param  string $content Content between shortcode.
			 * @return string          HTML output.
			 */
			public function render( $args, $content = '' ) {
				$this->defaults = self::get_element_defaults();
				$this->args     = FusionBuilder::set_shortcode_defaults( $this->defaults, $args, 'fusion_tb_woo_checkout_order_review' );

				$html  = $this->get_styles();
				$html .= '<div ' . FusionBuilder::attributes( 'fusion_tb_woo_checkout_order_review-shortcode' ) . '>' . $this->get_woo_checkout_order_review_content() . '</div>';

				$this->counter++;

				$this->on_render();

				return apply_filters( 'fusion_component_' . $this->shortcode_handle . '_content', $html, $args );
			}

			/**
			 * Builds HTML for Woo Checkout Order Review element.
			 *
			 * @static
			 * @access public
			 * @since 3.3
			 * @return string
			 */
			public function get_woo_checkout_order_review_content() {
				$content = '';

				if ( ! is_object( WC()->cart ) || 0 === WC()->cart->get_cart_contents_count() ) {
					return $content;
				}

				// Check cart items are valid.
				do_action( 'woocommerce_check_cart_items' );

				if ( function_exists( 'woocommerce_order_review' ) ) {
					if ( class_exists( 'WooCommerce_Germanized' ) ) {
						remove_action( 'woocommerce_checkout_order_review', 'woocommerce_order_review', wc_gzd_get_hook_priority( 'checkout_order_review' ) );
						remove_action( 'woocommerce_checkout_order_review', 'woocommerce_checkout_payment', wc_gzd_get_hook_priority( 'checkout_payment' ) );
					} else {
						remove_action( 'woocommerce_checkout_order_review', 'woocommerce_order_review', 10 );
						remove_action( 'woocommerce_checkout_order_review', 'woocommerce_checkout_payment', 20 );
					}

					ob_start();
					woocommerce_order_review();
					do_action( 'woocommerce_checkout_order_review' );
					$content .= ob_get_clean();
				}
				return apply_filters( 'fusion_woo_component_content', $content, $this->shortcode_handle, $this->args );
			}

			/**
			 * Builds the attributes array.
			 *
			 * @access public
			 * @since 3.3
			 * @return array
			 */
			public function attr() {
				$attr = [
					'class' => 'fusion-woo-checkout-order-review-tb fusion-woo-checkout-order-review-tb-' . $this->counter,
					'style' => '',
				];

				$attr = fusion_builder_visibility_atts( $this->args['hide_on_mobile'], $attr );

				if ( $this->args['animation_type'] ) {
					$attr = Fusion_Builder_Animation_Helper::add_animation_attributes( $this->args, $attr );
				}

				$attr['style'] .= Fusion_Builder_Margin_Helper::get_margins_style( $this->args );

				if ( $this->args['class'] ) {
					$attr['class'] .= ' ' . $this->args['class'];
				}

				if ( $this->args['id'] ) {
					$attr['id'] = $this->args['id'];
				}

				return $attr;
			}

			/**
			 * Get the styles.
			 *
			 * @access protected
			 * @since 3.3
			 * @return string
			 */
			protected function get_styles() {
				$this->base_selector = '.fusion-woo-checkout-order-review-tb-' . $this->counter;
				$this->dynamic_css   = [];

				$selector = [
					$this->base_selector . ' tbody tr td',
					$this->base_selector . ' thead tr th',
					$this->base_selector . ' tfoot tr th',
					$this->base_selector . ' tfoot tr td',
				];

				if ( ! $this->is_default( 'cell_padding_top' ) ) {
					$this->add_css_property( $selector, 'padding-top', $this->args['cell_padding_top'] );
				}

				if ( ! $this->is_default( 'cell_padding_bottom' ) ) {
					$this->add_css_property( $selector, 'padding-bottom', $this->args['cell_padding_bottom'] );
				}

				if ( ! $this->is_default( 'cell_padding_left' ) ) {
					$this->add_css_property( $selector, 'padding-left', $this->args['cell_padding_left'] );
				}

				if ( ! $this->is_default( 'cell_padding_right' ) ) {
					$this->add_css_property( $selector, 'padding-right', $this->args['cell_padding_right'] );
				}

				$selector = $this->base_selector . ' thead tr th';
				if ( ! $this->is_default( 'header_cell_backgroundcolor' ) ) {
					$this->add_css_property( $selector, 'background-color', $this->args['header_cell_backgroundcolor'] );
				}

				if ( ! $this->is_default( 'header_color' ) ) {
					$this->add_css_property( $selector, 'color', $this->args['header_color'] );
				}

				if ( ! $this->is_default( 'fusion_font_family_header_font' ) ) {
					$this->add_css_property( $selector, 'font-family', $this->args['fusion_font_family_header_font'] );
				}

				if ( ! $this->is_default( 'fusion_font_variant_header_font' ) ) {
					$this->add_css_property( $selector, 'font-weight', $this->args['fusion_font_variant_header_font'] );
				}

				if ( ! $this->is_default( 'header_font_size' ) ) {
					$this->add_css_property( $selector, 'font-size', $this->args['header_font_size'] );
				}

				if ( ! $this->is_default( 'header_line_height' ) ) {
					$this->add_css_property( $selector, 'line-height', $this->args['header_line_height'] );
				}

				if ( ! $this->is_default( 'header_letter_spacing' ) ) {
					$this->add_css_property( $selector, 'letter-spacing', fusion_library()->sanitize->get_value_with_unit( $this->args['header_letter_spacing'] ) );
				}

				if ( ! $this->is_default( 'header_text_transform' ) ) {
					$this->add_css_property( $selector, 'text-transform', $this->args['header_text_transform'] );
				}

				$selector = $this->base_selector . ' tbody tr td';
				if ( ! $this->is_default( 'table_cell_backgroundcolor' ) ) {
					$this->add_css_property( $selector, 'background-color', $this->args['table_cell_backgroundcolor'] );
				}

				if ( ! $this->is_default( 'text_color' ) ) {
					$this->add_css_property( $selector, 'color', $this->args['text_color'] );
				}

				if ( ! $this->is_default( 'fusion_font_family_text_font' ) ) {
					$this->add_css_property( $selector, 'font-family', $this->args['fusion_font_family_text_font'] );
				}

				if ( ! $this->is_default( 'fusion_font_variant_text_font' ) ) {
					$this->add_css_property( $selector, 'font-weight', $this->args['fusion_font_variant_text_font'] );
				}

				if ( ! $this->is_default( 'text_font_size' ) ) {
					$this->add_css_property( $selector, 'font-size', $this->args['text_font_size'] );
				}

				if ( ! $this->is_default( 'text_line_height' ) ) {
					$this->add_css_property( $selector, 'line-height', $this->args['text_line_height'] );
				}

				if ( ! $this->is_default( 'text_letter_spacing' ) ) {
					$this->add_css_property( $selector, 'letter-spacing', fusion_library()->sanitize->get_value_with_unit( $this->args['text_letter_spacing'] ) );
				}

				if ( ! $this->is_default( 'text_text_transform' ) ) {
					$this->add_css_property( $selector, 'text-transform', $this->args['text_text_transform'] );
				}

				$selector = $this->base_selector . ' tr, ' . $this->base_selector . ' tr td, ' . $this->base_selector . ' tr th, ' . $this->base_selector . ' tfoot';
				if ( ! $this->is_default( 'border_color' ) ) {
					$this->add_css_property( $selector, 'border-color', $this->args['border_color'], true );
				}

				$selector = $this->base_selector . ' tfoot tr th, ' . $this->base_selector . ' tfoot tr td';
				if ( ! $this->is_default( 'footer_cell_backgroundcolor' ) ) {
					$this->add_css_property( $selector, 'background-color', $this->args['footer_cell_backgroundcolor'] );
				}

				$selector .= ', ' . $this->base_selector . ' .shop_table tfoot .order-total .amount';
				if ( ! $this->is_default( 'footer_color' ) ) {
					$this->add_css_property( $selector, 'color', $this->args['footer_color'] );
				}

				if ( ! $this->is_default( 'fusion_font_family_footer_font' ) ) {
					$this->add_css_property( $selector, 'font-family', $this->args['fusion_font_family_footer_font'] );
				}

				if ( ! $this->is_default( 'fusion_font_variant_footer_font' ) ) {
					$this->add_css_property( $selector, 'font-weight', $this->args['fusion_font_variant_footer_font'] );
				}

				if ( ! $this->is_default( 'footer_font_size' ) ) {
					$this->add_css_property( $selector, 'font-size', $this->args['footer_font_size'] );
				}

				if ( ! $this->is_default( 'footer_line_height' ) ) {
					$this->add_css_property( $selector, 'line-height', $this->args['footer_line_height'] );
				}

				if ( ! $this->is_default( 'footer_letter_spacing' ) ) {
					$this->add_css_property( $selector, 'letter-spacing', fusion_library()->sanitize->get_value_with_unit( $this->args['footer_letter_spacing'] ) );
				}

				if ( ! $this->is_default( 'footer_text_transform' ) ) {
					$this->add_css_property( $selector, 'text-transform', $this->args['footer_text_transform'] );
				}

				if ( 'show' !== $this->args['table_header'] ) {
					$this->add_css_property( $this->base_selector . ' thead', 'display', 'none' );
				}

				if ( 'show' !== $this->args['display_product_images'] ) {
					$this->add_css_property( $this->base_selector . ' .product-thumbnail', 'display', 'none' );
					$this->add_css_property( $this->base_selector . ' .shop_table tbody tr', 'height', 'auto' );
				}

				$css = $this->parse_css();

				return $css ? '<style>' . $css . '</style>' : '';
			}

			/**
			 * Sets the necessary scripts.
			 *
			 * @access public
			 * @since 3.3
			 * @return void
			 */
			public function on_first_render() {
				wp_enqueue_script( 'wc-checkout' );
			}
		}
	}

	new FusionTB_Woo_Checkout_Order_Review();
}

/**
 * Map shortcode to Avada Builder
 *
 * @since 3.3
 */
function fusion_component_woo_checkout_order_review() {

	fusion_builder_map(
		fusion_builder_frontend_data(
			'FusionTB_Woo_Checkout_Order_Review',
			[
				'name'         => esc_attr__( 'Woo Checkout Order Review', 'fusion-builder' ),
				'shortcode'    => 'fusion_tb_woo_checkout_order_review',
				'icon'         => 'fusiona-checkout-order-review',
				'subparam_map' => [
					'fusion_font_family_header_font'  => 'header_fonts',
					'fusion_font_variant_header_font' => 'header_fonts',
					'header_font_size'                => 'header_fonts',
					'header_text_transform'           => 'header_fonts',
					'header_line_height'              => 'header_fonts',
					'header_letter_spacing'           => 'header_fonts',
					'header_color'                    => 'header_fonts',
					'fusion_font_family_text_font'    => 'text_fonts',
					'fusion_font_variant_text_font'   => 'text_fonts',
					'text_font_size'                  => 'text_fonts',
					'text_text_transform'             => 'text_fonts',
					'text_line_height'                => 'text_fonts',
					'text_letter_spacing'             => 'text_fonts',
					'text_color'                      => 'text_fonts',
					'fusion_font_family_footer_font'  => 'footer_fonts',
					'fusion_font_variant_footer_font' => 'footer_fonts',
					'footer_font_size'                => 'footer_fonts',
					'footer_text_transform'           => 'footer_fonts',
					'footer_line_height'              => 'footer_fonts',
					'footer_letter_spacing'           => 'footer_fonts',
					'footer_color'                    => 'footer_fonts',
				],
				'params'       => [
					[
						'type'             => 'dimension',
						'remove_from_atts' => true,
						'heading'          => esc_attr__( 'Margin', 'fusion-builder' ),
						'description'      => esc_attr__( 'In pixels or percentage, ex: 10px or 10%.', 'fusion-builder' ),
						'param_name'       => 'margin',
						'value'            => [
							'margin_top'    => '',
							'margin_right'  => '',
							'margin_bottom' => '',
							'margin_left'   => '',
						],
					],
					[
						'type'        => 'radio_button_set',
						'heading'     => esc_attr__( 'Show Table Headers', 'fusion-builder' ),
						'description' => esc_attr__( 'Choose to have table headers displayed.', 'fusion-builder' ),
						'param_name'  => 'table_header',
						'value'       => [
							'show' => esc_attr__( 'Show', 'fusion-builder' ),
							'hide' => esc_attr__( 'Hide', 'fusion-builder' ),
						],
						'default'     => 'show',
						'callback'    => [
							'function' => 'fusion_style_block',
						],
					],
					[
						'type'        => 'radio_button_set',
						'heading'     => esc_attr__( 'Show Product Images', 'fusion-builder' ),
						'description' => esc_attr__( 'Choose to have the product images displayed.', 'fusion-builder' ),
						'param_name'  => 'display_product_images',
						'value'       => [
							'show' => esc_attr__( 'Show', 'fusion-builder' ),
							'hide' => esc_attr__( 'Hide', 'fusion-builder' ),
						],
						'default'     => 'show',
						'callback'    => [
							'function' => 'fusion_style_block',
						],
					],
					[
						'type'        => 'colorpickeralpha',
						'heading'     => esc_attr__( 'Table Border Color', 'fusion-builder' ),
						'description' => esc_html__( 'Controls the color of the table border, ex: #000.' ),
						'param_name'  => 'border_color',
						'value'       => '',
						'group'       => esc_attr__( 'Design', 'fusion-builder' ),
						'callback'    => [
							'function' => 'fusion_style_block',
						],
					],
					[
						'type'             => 'dimension',
						'remove_from_atts' => true,
						'heading'          => esc_attr__( 'Table Cell Padding', 'fusion-builder' ),
						'description'      => esc_attr__( 'Enter values including any valid CSS unit, ex: 10px or 10%. Leave empty to use default 5px 0 5px 0 value.', 'fusion-builder' ),
						'param_name'       => 'cell_padding',
						'value'            => [
							'cell_padding_top'    => '',
							'cell_padding_right'  => '',
							'cell_padding_bottom' => '',
							'cell_padding_left'   => '',
						],
						'group'            => esc_attr__( 'Design', 'fusion-builder' ),
						'callback'         => [
							'function' => 'fusion_style_block',
						],
					],
					[
						'type'        => 'colorpickeralpha',
						'heading'     => esc_attr__( 'Header Cell Background Color', 'fusion-builder' ),
						'description' => esc_attr__( 'Controls the header cell background color. ', 'fusion-builder' ),
						'param_name'  => 'header_cell_backgroundcolor',
						'value'       => '',
						'group'       => esc_attr__( 'Design', 'fusion-builder' ),
						'dependency'  => [
							[
								'element'  => 'table_header',
								'value'    => 'show',
								'operator' => '==',
							],
						],
						'callback'    => [
							'function' => 'fusion_style_block',
						],
					],
					[
						'type'             => 'typography',
						'heading'          => esc_attr__( 'Header Cell Typography', 'fusion-builder' ),
						'description'      => esc_html__( 'Controls the typography of the header text. Leave empty for the global font family.', 'fusion-builder' ),
						'param_name'       => 'header_fonts',
						'choices'          => [
							'font-family'    => 'header_font',
							'font-size'      => 'header_font_size',
							'text-transform' => 'header_text_transform',
							'line-height'    => 'header_line_height',
							'letter-spacing' => 'header_letter_spacing',
							'color'          => 'header_color',
						],
						'default'          => [
							'font-family'    => '',
							'variant'        => '400',
							'font-size'      => '',
							'text-transform' => '',
							'line-height'    => '',
							'letter-spacing' => '',
							'color'          => '',
						],
						'remove_from_atts' => true,
						'global'           => true,
						'group'            => esc_attr__( 'Design', 'fusion-builder' ),
						'dependency'       => [
							[
								'element'  => 'table_header',
								'value'    => 'show',
								'operator' => '==',
							],
						],
						'callback'         => [
							'function' => 'fusion_style_block',
						],
					],
					[
						'type'        => 'colorpickeralpha',
						'heading'     => esc_attr__( 'Table Cell Background Color', 'fusion-builder' ),
						'description' => esc_attr__( 'Controls the table cell background color. ', 'fusion-builder' ),
						'param_name'  => 'table_cell_backgroundcolor',
						'value'       => '',
						'group'       => esc_attr__( 'Design', 'fusion-builder' ),
						'callback'    => [
							'function' => 'fusion_style_block',
						],
					],
					[
						'type'             => 'typography',
						'heading'          => esc_attr__( 'Table Cell Text Typography', 'fusion-builder' ),
						'description'      => esc_html__( 'Controls the typography of the text. Leave empty for the global font family.', 'fusion-builder' ),
						'param_name'       => 'text_fonts',
						'choices'          => [
							'font-family'    => 'text_font',
							'font-size'      => 'text_font_size',
							'text-transform' => 'text_text_transform',
							'line-height'    => 'text_line_height',
							'letter-spacing' => 'text_letter_spacing',
							'color'          => 'text_color',
						],
						'default'          => [
							'font-family'    => '',
							'variant'        => '400',
							'font-size'      => '',
							'text-transform' => '',
							'line-height'    => '',
							'letter-spacing' => '',
							'color'          => '',
						],
						'remove_from_atts' => true,
						'global'           => true,
						'group'            => esc_attr__( 'Design', 'fusion-builder' ),
						'callback'         => [
							'function' => 'fusion_style_block',
						],
					],
					[
						'type'        => 'colorpickeralpha',
						'heading'     => esc_attr__( 'Footer Cell Background Color', 'fusion-builder' ),
						'description' => esc_attr__( 'Controls the footer cell background color. ', 'fusion-builder' ),
						'param_name'  => 'footer_cell_backgroundcolor',
						'value'       => '',
						'group'       => esc_attr__( 'Design', 'fusion-builder' ),
						'callback'    => [
							'function' => 'fusion_style_block',
						],
					],
					[
						'type'             => 'typography',
						'heading'          => esc_attr__( 'Footer Cell Typography', 'fusion-builder' ),
						'description'      => esc_html__( 'Controls the typography of the footer text. Leave empty for the global font family.', 'fusion-builder' ),
						'param_name'       => 'footer_fonts',
						'choices'          => [
							'font-family'    => 'footer_font',
							'font-size'      => 'footer_font_size',
							'text-transform' => 'footer_text_transform',
							'line-height'    => 'footer_line_height',
							'letter-spacing' => 'footer_letter_spacing',
							'color'          => 'footer_color',
						],
						'default'          => [
							'font-family'    => '',
							'variant'        => '400',
							'font-size'      => '',
							'text-transform' => '',
							'line-height'    => '',
							'letter-spacing' => '',
							'color'          => '',
						],
						'remove_from_atts' => true,
						'global'           => true,
						'group'            => esc_attr__( 'Design', 'fusion-builder' ),
						'callback'         => [
							'function' => 'fusion_style_block',
						],
					],
					[
						'type'        => 'checkbox_button_set',
						'heading'     => esc_attr__( 'Element Visibility', 'fusion-builder' ),
						'param_name'  => 'hide_on_mobile',
						'value'       => fusion_builder_visibility_options( 'full' ),
						'default'     => fusion_builder_default_visibility( 'array' ),
						'description' => esc_attr__( 'Choose to show or hide the element on small, medium or large screens. You can choose more than one at a time.', 'fusion-builder' ),
					],
					[
						'type'        => 'textfield',
						'heading'     => esc_attr__( 'CSS Class', 'fusion-builder' ),
						'description' => esc_attr__( 'Add a class to the wrapping HTML element.', 'fusion-builder' ),
						'param_name'  => 'class',
						'value'       => '',
					],
					[
						'type'        => 'textfield',
						'heading'     => esc_attr__( 'CSS ID', 'fusion-builder' ),
						'description' => esc_attr__( 'Add an ID to the wrapping HTML element.', 'fusion-builder' ),
						'param_name'  => 'id',
						'value'       => '',
					],
					'fusion_animation_placeholder' => [
						'preview_selector' => '.fusion-woo-checkout-order-review-tb',
					],
				],
				'callback'     => [
					'function' => 'fusion_ajax',
					'action'   => 'get_fusion_tb_woo_checkout_order_review',
					'ajax'     => true,
				],
			]
		)
	);
}
add_action( 'fusion_builder_before_init', 'fusion_component_woo_checkout_order_review' );
Back to Directory File Manager