summaryrefslogtreecommitdiff
path: root/inc/compatibility/woocommerce/customizer/sections/layout/class-astra-woo-shop-cart-layout-configs.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/compatibility/woocommerce/customizer/sections/layout/class-astra-woo-shop-cart-layout-configs.php')
-rw-r--r--inc/compatibility/woocommerce/customizer/sections/layout/class-astra-woo-shop-cart-layout-configs.php57
1 files changed, 57 insertions, 0 deletions
diff --git a/inc/compatibility/woocommerce/customizer/sections/layout/class-astra-woo-shop-cart-layout-configs.php b/inc/compatibility/woocommerce/customizer/sections/layout/class-astra-woo-shop-cart-layout-configs.php
new file mode 100644
index 0000000..6c36a4f
--- /dev/null
+++ b/inc/compatibility/woocommerce/customizer/sections/layout/class-astra-woo-shop-cart-layout-configs.php
@@ -0,0 +1,57 @@
+<?php
+/**
+ * WooCommerce Options for Astra Theme.
+ *
+ * @package Astra
+ * @author Astra
+ * @copyright Copyright (c) 2020, Astra
+ * @link https://wpastra.com/
+ * @since Astra 1.1.0
+ */
+
+if ( ! defined( 'ABSPATH' ) ) {
+ exit;
+}
+
+if ( ! class_exists( 'Astra_Woo_Shop_Cart_Layout_Configs' ) ) {
+
+
+ /**
+ * Customizer Sanitizes Initial setup
+ */
+ class Astra_Woo_Shop_Cart_Layout_Configs extends Astra_Customizer_Config_Base {
+
+ /**
+ * Register Astra-WooCommerce Shop Cart Layout Customizer Configurations.
+ *
+ * @param Array $configurations Astra Customizer Configurations.
+ * @param WP_Customize_Manager $wp_customize instance of WP_Customize_Manager.
+ * @since 1.4.3
+ * @return Array Astra Customizer Configurations with updated configurations.
+ */
+ public function register_configuration( $configurations, $wp_customize ) {
+
+ $_configs = array(
+
+ /**
+ * Option: Cart upsells
+ *
+ * Enable Cross-sells - in the code it is refrenced as upsells rather than cross-sells.
+ */
+ array(
+ 'name' => ASTRA_THEME_SETTINGS . '[enable-cart-upsells]',
+ 'section' => 'section-woo-shop-cart',
+ 'type' => 'control',
+ 'control' => 'ast-toggle-control',
+ 'default' => astra_get_option( 'enable-cart-upsells' ),
+ 'title' => __( 'Enable Cross-sells', 'astra' ),
+ 'priority' => 10,
+ ),
+ );
+
+ return array_merge( $configurations, $_configs );
+ }
+ }
+}
+
+new Astra_Woo_Shop_Cart_Layout_Configs();