Astra_Woo_Shop_Container_Configs::register_configuration( Array $configurations, WP_Customize_Manager $wp_customize )
Register Astra-WooCommerce Shop Container Settings.
Description
Parameters
- $configurations
-
(Array) (Required) Astra Customizer Configurations.
- $wp_customize
-
(WP_Customize_Manager) (Required) instance of WP_Customize_Manager.
Return
(Array) Astra Customizer Configurations with updated configurations.
Source
File: inc/compatibility/woocommerce/customizer/sections/class-astra-woo-shop-container-configs.php
public function register_configuration( $configurations, $wp_customize ) { $_configs = array( /** * Option: Shop Page */ array( 'name' => ASTRA_THEME_SETTINGS . '[woocommerce-content-layout]', 'type' => 'control', 'control' => 'ast-select', 'default' => astra_get_option( 'woocommerce-content-layout' ), 'section' => 'section-container-layout', 'priority' => 85, 'title' => __( 'WooCommerce Layout', 'astra' ), 'divider' => array( 'ast_class' => 'ast-top-divider' ), 'choices' => array( 'default' => __( 'Default', 'astra' ), 'boxed-container' => __( 'Boxed', 'astra' ), 'content-boxed-container' => __( 'Content Boxed', 'astra' ), 'plain-container' => __( 'Full Width / Contained', 'astra' ), 'page-builder' => __( 'Full Width / Stretched', 'astra' ), ), ), ); return array_merge( $configurations, $_configs ); }
Expand full source code Collapse full source code View on Trac
Changelog
Version | Description |
---|---|
1.4.3 | Introduced. |