Astra_Elementor_Pro::astra_shop_add_to_cart_js_localize( Array $localize_data )

Append Elementor preview status.


Description


Parameters

$localize_data

(Array) (Required)


Return

(Array)


Source

File: inc/compatibility/class-astra-elementor-pro.php

		public function astra_shop_add_to_cart_js_localize( $localize_data ) {
			$elementor_preview_active = false;

			if ( class_exists( 'Elementor\Plugin' ) ) {
				$elementor_preview_active = \Elementor\Plugin::$instance->preview->is_preview_mode();

			}

			$localize_data['elementor_preview_active'] = $elementor_preview_active;

			return $localize_data;
		}

Changelog

Changelog
Version Description
4.1.6 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.