blob: 6c36a4f0e2978207549c3367a7356d19f96417ad (
plain) (
tree)
|
|
<?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();
|