SILENT KILLERPanel

Current Path: > home > transcarter > > www > wp-content > themes > woostify > > inc > > customizer


Operation   : Linux host59.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Software     : Apache
Server IP    : 198.54.126.42 | Your IP: 216.73.216.135
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: /home/transcarter//www/wp-content/themes/woostify//inc//customizer

NameTypeSizeLast ModifiedActions
custom-controls Directory - -
sections Directory - -
class-woostify-customizer.php File 36220 bytes June 12 2025 15:15:30.
class-woostify-fonts-helpers.php File 81989 bytes June 12 2025 15:15:30.
class-woostify-get-css.php File 60807 bytes June 12 2025 15:15:30.
class-woostify-webfont-loader.php File 19373 bytes June 12 2025 15:15:30.
override-defaults.php File 887 bytes June 12 2025 15:15:30.
register-sections.php File 3226 bytes June 12 2025 15:15:30.

Reading File: /home/transcarter//www/wp-content/themes/woostify//inc//customizer/class-woostify-customizer.php

<?php
/**
 * Woostify Customizer Class
 *
 * @package  woostify
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

if ( ! class_exists( 'Woostify_Customizer' ) ) :

	/**
	 * The Woostify Customizer class
	 */
	class Woostify_Customizer {

		/**
		 * Setup class.
		 */
		public function __construct() {
			add_action( 'customize_register', array( $this, 'woostify_customize_register' ) );
			add_action( 'customize_controls_enqueue_scripts', array( $this, 'woostify_customize_controls_scripts' ) );
			add_action( 'customize_controls_print_styles', array( $this, 'woostify_customize_controls_styles' ) );

			add_action( 'customize_save_after', array( $this, 'delete_dynamic_stylesheet_folder' ) );
			add_action( 'customize_save_after', array( $this, 'delete_cached_partials' ) );

			add_action( 'wp_ajax_woostify_regenerate_fonts_folder', array( $this, 'regenerate_woostify_fonts_folder' ) );
			add_action( 'wp_ajax_woostify_reset_dynamic_stylesheet_folder', array( $this, 'reset_dynamic_stylesheet_folder' ) );

			add_action( 'customize_preview_init', array( $this, 'woocommerce_init_action' ) );
		}

		/**
		 * Init actions in customize preview
		 */
		public function woocommerce_init_action() {
			$options = woostify_options( false );

			// Enabled Quantity Mode.
			if ( $options['shop_page_product_quantity'] && ! $options['catalog_mode'] ) {
				$add_to_cart_pos = $options['shop_page_add_to_cart_button_position'];

				if ( 'bottom' === $add_to_cart_pos ) {
					add_action( 'woocommerce_after_shop_loop_item_title', 'woostify_product_quantity', 3 );
					remove_action( 'woocommerce_after_shop_loop_item_title', 'woostify_product_quantity', 15 );
				} else {
					add_action( 'woocommerce_after_shop_loop_item_title', 'woostify_product_quantity', 15 );
					remove_action( 'woocommerce_after_shop_loop_item_title', 'woostify_product_quantity', 3 );
				}
			} else {
				remove_action( 'woocommerce_after_shop_loop_item_title', 'woostify_product_quantity', 3 );
				remove_action( 'woocommerce_after_shop_loop_item_title', 'woostify_product_quantity', 15 );
			}

			// Enabled Catalog Mode.
			if ( $options['catalog_mode'] ) {
				remove_action( 'woocommerce_after_shop_loop_item', 'woostify_loop_product_add_to_cart_button', 10 );
				remove_action( 'woostify_product_loop_item_action_item', 'woostify_product_loop_item_add_to_cart_icon', 10 );
				remove_action( 'woocommerce_before_shop_loop_item_title', 'woostify_loop_product_add_to_cart_on_image', 70 );

				// Remove quantity box.
				remove_action( 'woocommerce_after_shop_loop_item_title', 'woostify_product_quantity', 3 );
				remove_action( 'woocommerce_after_shop_loop_item_title', 'woostify_product_quantity', 15 );
			} else {
				add_action( 'woocommerce_after_shop_loop_item', 'woostify_loop_product_add_to_cart_button', 10 );
				add_action( 'woostify_product_loop_item_action_item', 'woostify_product_loop_item_add_to_cart_icon', 10 );
				add_action( 'woocommerce_before_shop_loop_item_title', 'woostify_loop_product_add_to_cart_on_image', 70 );

				if ( $options['shop_page_product_quantity'] ) {
					$add_to_cart_pos = $options['shop_page_add_to_cart_button_position'];

					if ( 'bottom' === $add_to_cart_pos ) {
						add_action( 'woocommerce_after_shop_loop_item_title', 'woostify_product_quantity', 3 );
						remove_action( 'woocommerce_after_shop_loop_item_title', 'woostify_product_quantity', 15 );
					} else {
						add_action( 'woocommerce_after_shop_loop_item_title', 'woostify_product_quantity', 15 );
						remove_action( 'woocommerce_after_shop_loop_item_title', 'woostify_product_quantity', 3 );
					}
				}
			}

			// Product Data Tabs.
			$pdt_layout       = $options['shop_single_product_data_tabs_layout'];
			$pdt_callback     = 'normal' === $pdt_layout ? 'woocommerce_output_product_data_tabs' : 'woostify_output_product_data_tabs_accordion';
			$pdt_pos          = $options['shop_single_product_data_tabs_pos'];
			$pdt_pos_priority = 'woocommerce_single_product_summary' === $pdt_pos ? 35 : 10;

			remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 10 );
			remove_action( 'woocommerce_after_single_product_summary', 'woostify_output_product_data_tabs_accordion', 10 );
			remove_action( 'woocommerce_after_single_product_summary', 'woostify_output_product_data_tabs', 10 );
			remove_action( 'woocommerce_single_product_summary', 'woostify_output_product_data_tabs', 35 );
			remove_action( 'woocommerce_single_product_summary', 'woostify_output_product_data_tabs_accordion', 35 );

			add_action( $pdt_pos, $pdt_callback, $pdt_pos_priority );

			// Custom product data tab.
			add_filter( 'woocommerce_product_tabs', array( $this, 'product_data_tabs' ), 9999 );
		}

		/**
		 * Custom product data tabs
		 *
		 * @param array $tabs The product tabs.
		 */
		public function product_data_tabs( $tabs ) {
			$default_tabs   = array( 'description', 'additional_information', 'reviews' );
			$customize_tabs = woostify_custom_product_data_tabs( $tabs );
			foreach ( $default_tabs as $default_tab ) :
				if ( ! isset( $customize_tabs[ $default_tab ] ) ) {
					unset( $tabs[ $default_tab ] );
				}
			endforeach;
			$tabs = array_merge( $customize_tabs, $tabs );

			return $tabs;
		}

		/**
		 * Delete dynamic stylesheet folder
		 */
		public function delete_dynamic_stylesheet_folder() {
			$get_css = new Woostify_Get_CSS();
			$get_css->delete_dynamic_stylesheet_folder();
		}

		/**
		 * Reset fonts folder
		 */
		public function reset_dynamic_stylesheet_folder() {
			/*Do another nonce check*/
			check_ajax_referer( 'woostify_customize_nonce', 'woostify_customize_nonce' );

			if ( ! current_user_can( 'edit_theme_options' ) ) {
				wp_send_json_error( 'invalid_permissions' );
			}

			$get_css = new Woostify_Get_CSS();
			$get_css->delete_dynamic_stylesheet_folder();
		}

		/**
		 * Regenerate fonts folder
		 */
		public function regenerate_woostify_fonts_folder() {
			/*Do another nonce check*/
			check_ajax_referer( 'woostify_customize_nonce', 'woostify_customize_nonce' );

			if ( ! current_user_can( 'edit_theme_options' ) ) {
				wp_send_json_error( 'invalid_permissions' );
			}

			$options = woostify_options( false );

			if ( $options['load_google_fonts_locally'] ) {
				$local_font_loader = woostify_webfont_loader_instance( '' );
				$flushed           = $local_font_loader->woostify_delete_fonts_folder();

				if ( ! $flushed ) {
					wp_send_json_error( 'failed_to_flush' );
				}
				wp_send_json_success();
			}

			wp_send_json_error( 'no_font_loader' );
		}

		/**
		 * Get color global elementor
		 *
		 * @return array
		 */
		public function get_color_global_elementor() {
			$colors = array();
			if ( woostify_is_elementor_activated() && isset( \Elementor\Plugin::$instance->kits_manager ) ) {
				$kits_manager = \Elementor\Plugin::$instance->kits_manager;

				$system_colors = $kits_manager->get_current_settings( 'system_colors' );

				foreach ( $system_colors as $sc_k => $value ) {
					unset( $value['_id'] );
					array_push( $colors, $value );
				}

				$custom_colors = $kits_manager->get_current_settings( 'custom_colors' );

				foreach ( $custom_colors as $cc_k => $value ) {
					unset( $value['_id'] );
					array_push( $colors, $value );
				}
			}

			return $colors;
		}

		/**
		 * Add script for customize controls
		 */
		public function woostify_customize_controls_scripts() {
			wp_enqueue_script(
				'woostify-condition-control',
				WOOSTIFY_THEME_URI . 'inc/customizer/custom-controls/conditional/js/condition.js',
				array(),
				woostify_version(),
				true
			);

			wp_localize_script(
				'woostify-color-group',
				'woostify_color_group',
				array(
					'elementor_colors' => $this->get_color_global_elementor(),
				)
			);
		}

		/**
		 * Add style for customize controls
		 */
		public function woostify_customize_controls_styles() {
			wp_enqueue_style(
				'woostify-condition-control',
				WOOSTIFY_THEME_URI . 'inc/customizer/custom-controls/conditional/css/condition.css',
				array(),
				woostify_version()
			);
		}

		/**
		 * Delete cached font folder local
		 */
		public function delete_cached_partials() {
			$options                   = woostify_options( false );
			$load_google_fonts_locally = $options['load_google_fonts_locally'];

			// Delete previously stored local fonts data, if exists.
			if ( $load_google_fonts_locally ) {
				$local_webfont_loader = woostify_webfont_loader_instance( '' );
				$local_webfont_loader->woostify_delete_fonts_folder();
			}
		}

		/**
		 * Returns an array of the desired default Woostify Options
		 *
		 * @return array
		 */
		public static function woostify_get_woostify_default_setting_values() {
			$slider_items = array(
				array(
					'type'    => 'text',
					'name'    => __('Sign up & enjoy 10% off','woostify'),
					'woostify',
				),
				array(
					'type'    => 'text',
					'name'    => __('Free shipping on all U.S. orders $50+','woostify'),
					'woostify',
				),
				array(
					'type'    => 'text',
					'name'    => __('Welcome to Woostify','woostify'),
					'woostify',
				),
				array(
					'type'    => 'text',
					'name'    => __('Sign up & enjoy 10% off','woostify'),
					'woostify',
				),
				array(
					'type'    => 'text',
					'name'    => __('Free shipping on all U.S. orders $50+','woostify'),
					'woostify',
				),
				array(
					'type'    => 'text',
					'name'    => __('Welcome to Woostify','woostify'),
					'woostify',
				),
			);

			$product_data_tabs_items = array(
				array(
					'type'    => 'description',
					'name'    => 'Description',
					'woostify',
					'content' => '',
				),
				array(
					'type'    => 'additional_information',
					'name'    => 'Additional information',
					'content' => '',
				),
				array(
					'type'    => 'reviews',
					'name'    => 'Reviews',
					'content' => '',
				),
			);
			$sticky_footer_bar_items = array(
				array(
					'type'      => 'custom',
					'icon'      => 'home',
					'name'      => 'Shop',
					'link'      => '#',
					'shortcode' => '',
					'hidden'    => false,
				),
				array(
					'type'      => 'wishlist',
					'icon'      => 'heart',
					'name'      => 'Wishlist',
					'link'      => '#',
					'hidden'    => false,
					'shortcode' => '',
				),
				array(
					'type'      => 'search',
					'icon'      => 'search',
					'name'      => 'Search',
					'link'      => '#',
					'hidden'    => false,
					'shortcode' => '',
				),
				array(
					'type'      => 'cart',
					'icon'      => 'shopping-cart-2',
					'name'      => 'Cart',
					'link'      => '#',
					'hidden'    => false,
					'shortcode' => '',
				),
				array(
					'type'      => 'shortcode',
					'icon'      => '',
					'name'      => 'Shortcode',
					'link'      => '#',
					'hidden'    => true,
					'shortcode' => '',
				),
			);
			$global_color_settings   = array(
				'theme_color',
				'text_color',
				'accent_color',
				'link_hover_color',
				'extra_color_1',
				'extra_color_2',
			);
			$global_color_labels     = array(
				__( 'Theme Color', 'woostify' ),
				__( 'Text Color', 'woostify' ),
				__( 'Link / Accent Color', 'woostify' ),
				__( 'Link Hover Color', 'woostify' ),
				__( 'Extra Color 1', 'woostify' ),
				__( 'Extra Color 2', 'woostify' ),
			);

			$args = array(
				// GLOBAL.
				'global_color_labels'                      => $global_color_labels,
				'global_color_settings'                    => $global_color_settings,
				'background_color'                         => '#ffffff',
				// CONTAINER.
				'container_width'                          => '1200',
				'default_container'                        => 'normal',
				'page_container'                           => 'default',
				'blog_single_container'                    => 'default',
				'archive_container'                        => 'default',
				'shop_container'                           => 'default',
				'shop_single_container'                    => 'default',
				// LOGO.
				'retina_logo'                              => '',
				'logo_mobile'                              => '',
				'logo_width'                               => '',
				'tablet_logo_width'                        => '',
				'mobile_logo_width'                        => '',
				// COLOR.
				'theme_color'                              => '#1346af',
				'primary_menu_color'                       => '#2b2b2b',
				'primary_sub_menu_color'                   => '#2b2b2b',
				'heading_color'                            => '#2b2b2b',
				'text_color'                               => '#8f8f8f',
				'accent_color'                             => '#2b2b2b',
				'link_hover_color'                         => '#1346af',
				'extra_color_1'                            => '#fd0',
				'extra_color_2'                            => '#fd0',
				// TOPBAR.
				'topbar_display'                           => true,
				'topbar_text_color'                        => '#ffffff',
				'topbar_background_color'                  => '#292f34',
				'topbar_space'                             => 0,
				'topbar_left'                              => '',
				'topbar_center'                            => '',
				'topbar_right'                             => '',
				'topbar_slider_display'                    => false,
				'topbar_slider_type'                       => 'text-scroll',
				'topbar_slider_slide_to_show'            => 1,
				'topbar_slider_button'                     => false,
				'topbar_slider_autoplay'                   => true,
				'topbar_slider_items'      				   => wp_json_encode( $slider_items ),
				'topbar_slider_text_color'                 => '#ffffff',
				'topbar_slider_background_color'           => '#292f34',
				'topbar_slider_space'                      => 5,
				'topbar_slider_button_color'               => '#222222',
				// HEADER.
				'header_layout'                            => 'layout-1',
				'header_background_color'                  => '#ffffff',
				'header_icon_color'                        => '',
				'header_icon_hover_color'                  => '',
				'header_count_color'                       => '',
				'header_count_background_color'            => '',
				'header_primary_menu'                      => true,
				'header_menu_breakpoint'                   => 992,
				'header_search_icon'                       => true,
				'header_wishlist_icon'                     => true,
				'header_search_only_product'               => true,
				'header_account_icon'                      => true,
				'header_shop_cart_icon'                    => true,
				'header_shop_cart_price'                   => false,
				'header_shop_hide_zero_value_cart_count'   => false,
				'header_shop_hide_zero_value_cart_subtotal' => false,
				'header_shop_enable_login_popup'           => false,
				// Header transparent.
				'header_transparent'                       => false,
				'header_transparent_enable_on'             => 'all-devices',
				'header_transparent_disable_archive'       => true,
				'header_transparent_disable_index'         => false,
				'header_transparent_disable_page'          => false,
				'header_transparent_disable_post'          => false,
				'header_transparent_disable_shop'          => false,
				'header_transparent_disable_product'       => false,
				'header_transparent_border_width'          => 0,
				'header_transparent_border_color'          => '#ffffff',
				'header_transparent_box_shadow'            => false,
				'header_transparent_shadow_type'           => 'outset',
				'header_transparent_shadow_x'              => 0,
				'header_transparent_shadow_y'              => 0,
				'header_transparent_shadow_blur'           => 0,
				'header_transparent_shadow_spread'         => 0,
				'header_transparent_shadow_color'          => '#000000',
				'header_transparent_logo'                  => '',
				'header_transparent_menu_color'            => '',
				'header_transparent_icon_color'            => '',
				'header_transparent_count_background'      => '',
				// PAGE HEADER.
				'page_header_display'                      => false,
				'page_header_title'                        => true,
				'page_header_breadcrumb'                   => true,
				'page_header_text_align'                   => 'justify',
				'page_header_title_color'                  => '#4c4c4c',
				'page_header_breadcrumb_text_color'        => '#606060',
				'page_header_background_color'             => '#f2f2f2',
				'page_header_background_image'             => '',
				'page_header_background_image_size'        => 'auto',
				'page_header_background_image_repeat'      => 'repeat',
				'page_header_background_image_position'    => 'center-center',
				'page_header_background_image_attachment'  => 'scroll',
				'page_header_padding_top'                  => 50,
				'page_header_padding_bottom'               => 50,
				'page_header_margin_bottom'                => 50,
				// FOOTER.
				'footer_display'                           => true,
				'footer_space'                             => 100,
				'footer_column'                            => 0,
				'footer_background_color'                  => '#eeeeec',
				'footer_heading_color'                     => '#2b2b2b',
				'footer_link_color'                        => '#8f8f8f',
				'footer_text_color'                        => '#8f8f8f',
				'footer_custom_text'                       => woostify_footer_custom_text(),
				// Sticky Footer Bar.
				'sticky_footer_bar_enable'                 => false,
				'sticky_footer_bar_items'                  => wp_json_encode( $sticky_footer_bar_items ),
				'sticky_footer_bar_enable_on'              => 'mobile',
				'sticky_footer_bar_hide_on_product_single' => true,
				'sticky_footer_bar_hide_on_cart_page'      => true,
				'sticky_footer_bar_hide_on_checkout_page'  => true,
				'sticky_footer_bar_text_font_size'         => 13,
				'tablet_sticky_footer_bar_text_font_size'  => 13,
				'mobile_sticky_footer_bar_text_font_size'  => 12,
				'sticky_footer_bar_icon_font_size'         => 20,
				'tablet_sticky_footer_bar_icon_font_size'  => 20,
				'mobile_sticky_footer_bar_icon_font_size'  => 18,
				'sticky_footer_bar_text_color'             => '#111111',
				'sticky_footer_bar_text_hover_color'       => '#111111',
				'sticky_footer_bar_icon_color'             => '#111111',
				'sticky_footer_bar_icon_hover_color'       => '#111111',
				'sticky_footer_bar_text_font_weight'       => 600,
				'sticky_footer_bar_background'             => '#ffffff',
				'sticky_footer_bar_hide_when_scroll'       => false,
				'sticky_footer_bar_icon_spacing'           => 5,
				'tablet_sticky_footer_bar_icon_spacing'    => 5,
				'mobile_sticky_footer_bar_icon_spacing'    => 5,
				'sticky_footer_bar_padding'                => '10 0 10 0',
				'tablet_sticky_footer_bar_padding'         => '10 0 10 0',
				'mobile_sticky_footer_bar_padding'         => '10 0 10 0',
				// Scroll To Top.
				'scroll_to_top'                            => true,
				'scroll_to_top_background'                 => '',
				'scroll_to_top_color'                      => '',
				'scroll_to_top_border_radius'              => 0,
				'scroll_to_top_position'                   => 'right',
				'scroll_to_top_offset_bottom'              => 20,
				'scroll_to_top_on'                         => 'default',
				'scroll_to_top_icon_size'                  => 17,
				// BUTTONS.
				'button_text_color'                        => '#ffffff',
				'button_background_color'                  => '#1346af',
				'button_hover_text_color'                  => '#ffffff',
				'button_hover_background_color'            => '#3a3a3a',
				'buttons_border_radius'                    => 50,
				// BLOG.
				'blog_list_layout'                         => 'list',
				'blog_list_limit_exerpt'                   => 20,
				'blog_list_structure'                      => array( 'image', 'title-meta', 'post-meta' ),
				'blog_list_post_meta'                      => array( 'date', 'author', 'comments' ),
				'blog_title_color'                         => '#2b2b2b',
				'blog_title_font_size'                     => 24,
				'blog_metadata_color'                      => '#2b2b2b',
				'blog_metadata_font_size'                  => 14,
				'blog_description_color'                   => '#8f8f8f',
				'blog_description_font_size'               => 14,
				'blog_description_tablet_font_size'        => 14,
				'blog_description_mobile_font_size'        => 14,
				'blog_metadata_tablet_font_size'           => 14,
				'blog_metadata_mobile_font_size'           => 14,
				'blog_title_tablet_font_size'              => 20,
				'blog_title_mobile_font_size'              => 18,
				// BLOG SINGLE.
				'blog_single_structure'                    => array( 'image', 'title-meta', 'post-meta' ),
				'blog_single_post_meta'                    => array( 'date', 'author', 'category', 'comments' ),
				'blog_single_author_box'                   => false,
				'blog_single_related_post'                 => true,
				// SHOP.
				'shop_page_product_alignment'              => 'center',
				'shop_page_title'                          => true,
				'shop_page_breadcrumb'                     => true,
				'shop_page_result_count'                   => true,
				'shop_page_product_filter'                 => true,
				'shop_page_product_quantity'               => false,
				'outofstock_to_bottom'                     => false,
				// Infinite scroll.
				'shop_page_infinite_scroll_enable'         => false,
				'shop_page_infinite_scroll_type'           => 'button',
				// Product catalog.
				'catalog_mode'                             => false,
				'hide_variations'                          => false,
				'products_per_row'                         => 3,
				'tablet_products_per_row'                  => 2,
				'mobile_products_per_row'                  => 1,
				'products_per_page'                        => 12,
				// Shop page style.
				'shop_page_product_price_color'            => '#2b2b2b',
				'shop_page_product_price_font_size'        => 14,
				'shop_page_product_price_tablet_font_size' => 14,
				'shop_page_product_price_mobile_font_size' => 14,
				'shop_page_product_title_color'            => '#8f8f8f',
				'shop_page_product_title_font_size'        => 14,
				'shop_page_product_title_tablet_font_size' => 14,
				'shop_page_product_title_mobile_font_size' => 14,

				// Product card.
				'shop_page_product_card_border_style'      => 'none',
				'shop_page_product_card_border_width'      => 1,
				'shop_page_product_card_border_color'      => '#cccccc',
				// Product content.
				'shop_page_product_content_equal'          => false,
				'shop_page_product_content_min_height'     => 160,
				'shop_page_product_title'                  => true,
				'shop_page_product_category'               => false,
				'shop_page_product_rating'                 => true,
				'shop_page_product_price'                  => true,
				// Product image.
				'shop_page_product_image_hover'            => 'swap',
				'shop_page_product_image_border_style'     => 'none',
				'shop_page_product_image_border_width'     => 1,
				'shop_page_product_image_border_color'     => '#cccccc',
				'shop_page_product_image_equal_height'     => false,
				'shop_page_product_image_height'           => 300,
				// Add to cart button.
				'shop_page_add_to_cart_button_position'    => 'bottom',
				'shop_product_add_to_cart_icon'            => true,
				'shop_page_button_cart_background'         => '',
				'shop_page_button_cart_color'              => '',
				'shop_page_button_background_hover'        => '',
				'shop_page_button_color_hover'             => '',
				'shop_page_button_border_radius'           => '',
				// Wishlist.
				'shop_page_wishlist_support_plugin'        => 'ti',
				'shop_page_wishlist_position'              => 'top-right',
				// Sale tag.
				'shop_page_sale_tag_position'              => 'left',
				'shop_page_sale_percent'                   => true,
				'shop_page_sale_text'                      => __( 'Sale!', 'woostify' ),
				'shop_page_sale_border_radius'             => 0,
				'shop_page_sale_square'                    => false,
				'shop_page_sale_size'                      => 40,
				'shop_page_sale_color'                     => '#ffffff',
				'shop_page_sale_bg_color'                  => '#1346af',
				// Out of stock label.
				'shop_page_out_of_stock_position'          => 'left',
				'shop_page_out_of_stock_text'              => __( 'Out Of Stock', 'woostify' ),
				'shop_page_out_of_stock_border_radius'     => 0,
				'shop_page_out_of_stock_square'            => false,
				'shop_page_out_of_stock_size'              => 40,
				'shop_page_out_of_stock_color'             => '#ffffff',
				'shop_page_out_of_stock_bg_color'          => '#818486',
				// SHOP SINGLE.
				'shop_single_breadcrumb'                   => true,
				'shop_single_product_navigation'           => true,
				'shop_single_ajax_add_to_cart'             => true,
				'shop_single_stock_label'                  => true,
				'shop_single_stock_product_limit'          => 0,
				'shop_single_loading_bar'                  => true,
				'shop_single_content_background'           => '#f3f3f3',
				'shop_single_trust_badge_image'            => '',
				'shop_single_product_gallery_layout_select' => 'theme',
				'shop_single_gallery_layout'               => 'vertical',
				'shop_single_image_load'                   => true,
				'shop_single_image_zoom'                   => true,
				'shop_single_image_lightbox'               => true,
				'shop_single_product_sticky_top_space'     => 50,
				'shop_single_product_sticky_bottom_space'  => 50,
				// Meta.
				'shop_single_skus'                         => true,
				'shop_single_categories'                   => true,
				'shop_single_tags'                         => true,
				// Product Data Tabs.
				'shop_single_product_data_tabs_layout'     => 'normal',
				'shop_single_product_data_tabs_pos'        => 'woocommerce_after_single_product_summary',
				'shop_single_product_data_tabs_open'       => true,
				'shop_single_product_data_tabs_items'      => wp_json_encode( $product_data_tabs_items ),
				// Related.
				'shop_single_related_product'              => true,
				'shop_single_product_related_total'        => 4,
				'shop_single_product_related_columns'      => 4,
				'shop_single_product_related_enable_carousel' => false,
				'shop_single_product_related_carousel_arrows' => true,
				'shop_single_product_related_carousel_dots' => true,
				// Recently view.
				'shop_single_product_recently_viewed'      => false,
				'shop_single_recently_viewed_title'        => __( 'Recently Viewed Products', 'woostify' ),
				'shop_single_recently_viewed_count'        => 4,
				// Single Product Add To Cart.
				'shop_single_button_cart_background'       => '',
				'shop_single_button_cart_color'            => '',
				'shop_single_button_background_hover'      => '',
				'shop_single_button_color_hover'           => '',
				'shop_single_button_border_radius'         => '',
				// CART PAGE.
				'cart_page_layout'                         => 'layout-2',
				'cart_page_sticky_proceed_button'          => true,
				// FREE SHIPPING THRESHOLD.
				'shipping_threshold_enabled'               => false,
				'shipping_threshold_enable_progress_bar'   => false,
				'shipping_threshold_progress_bar_amount'   => 100,
				'shipping_threshold_progress_bar_color'    => '#1346af',
				'shipping_threshold_progress_bar_initial_msg' => 'Add [missing_amount] more to get Free Shipping!',
				'shipping_threshold_progress_bar_success_msg' => 'You\'ve got free shipping!',
				'shipping_threshold_progress_bar_success_color' => '#67bb67',
				'shipping_threshold_enable_confetti_effect' => true,
				'shipping_threshold_message_color'         => '',
				'shipping_threshold_message_success_color' => '',
				// MINI CART.
				'mini_cart_background_color'               => '#fff',
				'mini_cart_empty_message'                  => 'No products in the cart.',
				'mini_cart_empty_enable_button'            => true,
				'mini_cart_top_content_select'             => '',
				'mini_cart_top_content_custom_html'        => '',
				'mini_cart_before_checkout_button_content_select' => '',
				'mini_cart_before_checkout_button_content_custom_html' => '',
				'mini_cart_after_checkout_button_content_select' => '',
				'mini_cart_after_checkout_button_content_custom_html' => '',
				// CHECKOUT PAGE.
				'checkout_page_layout'                     => 'layout-1',
				'checkout_distraction_free'                => false,
				'checkout_multi_step'                      => false,
				'checkout_sticky_place_order_button'       => true,
				// SIDEBAR.
				'sidebar_default'                          => is_rtl() ? 'left' : 'right',
				'sidebar_page'                             => 'full',
				'sidebar_blog'                             => 'default',
				'sidebar_blog_single'                      => 'default',
				'sidebar_shop'                             => 'default',
				'sidebar_shop_single'                      => 'full',
				'sidebar_width'                            => 20,
				// 404.
				'error_404_image'                          => '',
				'error_404_text'                           => __( 'Opps! The page you are looking for is missing for some reasons. Please come back to homepage', 'woostify' ),
				'load_google_fonts_locally'                => false,
				'load_google_fonts_locally_preload'        => false,
				'performance_disable_woo_blocks_styles'    => false,
				'enabled_dynamic_css'                      => false,
				// Mobile Menu.
				'mobile_menu_hide_search_field'            => false,
				'mobile_menu_hide_login'                   => false,
				'header_show_categories_menu_on_mobile'    => false,
				'mobile_menu_primary_menu_tab_title'       => 'Menu',
				'mobile_menu_categories_menu_tab_title'    => 'Categories',
				'mobile_menu_icon_bar_color'               => '',
				'mobile_menu_background'                   => '#fff',
				'mobile_menu_text_color'                   => '#000',
				'mobile_menu_text_hover_color'             => '#000',
				'mobile_menu_tab_background'               => '',
				'mobile_menu_tab_active_background'        => '#f7f7f7',
				'mobile_menu_tab_color'                    => '',
				'mobile_menu_tab_active_color'             => '',
				'mobile_menu_tab_padding'                  => '16 10 16 10',
				'mobile_menu_nav_tab_spacing_bottom'       => 20,
			);

			return apply_filters( 'woostify_setting_default_values', $args );
		}

		/**
		 * Get all of the Woostify theme option.
		 *
		 * @return array $woostify_options The Woostify Theme Options.
		 */
		public function woostify_get_woostify_options() {
			$woostify_options = wp_parse_args(
				get_option( 'woostify_setting', array() ),
				self::woostify_get_woostify_default_setting_values()
			);

			return apply_filters( 'woostify_options', $woostify_options );
		}

		/**
		 * Add postMessage support for site title and description for the Theme Customizer along with several other settings.
		 *
		 * @param WP_Customize_Manager $wp_customize Theme Customizer object.
		 */
		public function woostify_customize_register( $wp_customize ) {

			// Custom default section, panel.
			require_once WOOSTIFY_THEME_DIR . 'inc/customizer/override-defaults.php';

			// Add customizer custom controls.
			$customizer_controls = glob( WOOSTIFY_THEME_DIR . 'inc/customizer/custom-controls/**/*.php' );
			foreach ( $customizer_controls as $file ) {
				if ( file_exists( $file ) ) {
					require_once $file;
				}
			}

			// Register section & panel.
			require_once WOOSTIFY_THEME_DIR . 'inc/customizer/register-sections.php';

			// Add customizer sections.
			$customizer_sections = glob( WOOSTIFY_THEME_DIR . 'inc/customizer/sections/**/*.php' );
			foreach ( $customizer_sections as $file ) {
				if ( file_exists( $file ) ) {
					require_once $file;
				}
			}

			// Register Control Type - Register for controls has content_template function.
			if ( method_exists( $wp_customize, 'register_control_type' ) ) {
				$wp_customize->register_control_type( 'Woostify_Heading_Control' );
				$wp_customize->register_control_type( 'Woostify_Section_Control' );
				$wp_customize->register_control_type( 'Woostify_Color_Control' );
				$wp_customize->register_control_type( 'Woostify_Typography_Control' );
				$wp_customize->register_control_type( 'Woostify_Range_Slider_Control' );
				$wp_customize->register_control_type( 'Woostify_Sortable_Control' );
				$wp_customize->register_control_type( 'Woostify_Get_Pro_Control' );
			}

			// Register Section Type.
			if ( method_exists( $wp_customize, 'register_section_type' ) ) {
				$wp_customize->register_section_type( 'Woostify_Get_Pro_Section' );
			}

			// Get Pro Extensions area.
			if ( ! defined( 'WOOSTIFY_PRO_VERSION' ) ) {
				// Add get Pro Extensions section.
				$wp_customize->add_section(
					new Woostify_Get_Pro_Section(
						$wp_customize,
						'woostify_get_pro_section',
						array(
							'pro_text'   => __( 'Get Woostify  Pro Extensions!', 'woostify' ),
							'pro_url'    => woostify_get_pro_url(),
							'capability' => 'edit_theme_options',
							'priority'   => 0,
							'type'       => 'woostify-pro-section',
						)
					)
				);

				// Add get pro control.
				$wp_customize->add_control(
					new Woostify_Get_Pro_Control(
						$wp_customize,
						'woostify_header_addon',
						array(
							'section'     => 'woostify_header',
							'type'        => 'addon',
							'label'       => __( 'Learn More', 'woostify' ),
							'description' => __( 'More options are coming for this section in our Pro Extensions.', 'woostify' ),
							'url'         => woostify_get_pro_url(),
							'priority'    => 200,
							'settings'    => isset( $wp_customize->selective_refresh ) ? array() : 'blogname',
						)
					)
				);

				$wp_customize->add_control(
					new Woostify_Get_Pro_Control(
						$wp_customize,
						'woostify_product_style_addon',
						array(
							'section'     => 'woostify_product_style',
							'type'        => 'addon',
							'label'       => __( 'Learn More', 'woostify' ),
							'description' => __( 'More options are coming for this section in our Pro Extensions.', 'woostify' ),
							'url'         => woostify_get_pro_url(),
							'priority'    => 200,
							'settings'    => isset( $wp_customize->selective_refresh ) ? array() : 'blogname',
						)
					)
				);

				$wp_customize->add_control(
					new Woostify_Get_Pro_Control(
						$wp_customize,
						'woostify_shop_addon',
						array(
							'section'     => 'woostify_shop_page',
							'type'        => 'addon',
							'label'       => __( 'Learn More', 'woostify' ),
							'description' => __( 'More options are coming for this section in our Pro Extensions.', 'woostify' ),
							'url'         => woostify_get_pro_url(),
							'priority'    => 200,
							'settings'    => isset( $wp_customize->selective_refresh ) ? array() : 'blogname',
						)
					)
				);

				$wp_customize->add_control(
					new Woostify_Get_Pro_Control(
						$wp_customize,
						'woostify_shop_single_addon',
						array(
							'section'     => 'woostify_shop_single',
							'type'        => 'addon',
							'label'       => __( 'Learn More', 'woostify' ),
							'description' => __( 'More options are coming for this section in our Pro Extensions.', 'woostify' ),
							'url'         => woostify_get_pro_url(),
							'priority'    => 200,
							'settings'    => isset( $wp_customize->selective_refresh ) ? array() : 'blogname',
						)
					)
				);

				$wp_customize->add_control(
					new Woostify_Get_Pro_Control(
						$wp_customize,
						'woostify_footer_addon',
						array(
							'section'     => 'woostify_footer',
							'type'        => 'addon',
							'label'       => __( 'Learn More', 'woostify' ),
							'description' => __( 'More options are coming for this section in our Pro Extensions.', 'woostify' ),
							'url'         => woostify_get_pro_url(),
							'priority'    => 200,
							'settings'    => isset( $wp_customize->selective_refresh ) ? array() : 'blogname',
						)
					)
				);
			}
		}
	}

endif;

return new Woostify_Customizer();

SILENT KILLER Tool