Astra_Ext_Woocommerce_Loader::__construct()

Constructor


Description


Source

File: addons/woocommerce/classes/class-astra-ext-woocommerce-loader.php

		public function __construct() {

			add_filter( 'astra_theme_defaults', array( $this, 'theme_defaults' ) );
			add_action( 'customize_register', array( $this, 'customize_register' ), 2 );
			add_action( 'customize_preview_init', array( $this, 'preview_scripts' ) );

			add_filter( 'astra_woo_shop_hover_style', array( $this, 'woo_shop_hover_style_callback' ) );

			add_filter( 'wc_add_to_cart_message_html', array( $this, 'disable_woo_cart_msg' ), 10, 2 );
		}


User Contributed Notes

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