ASTRA_THEME_SETTINGS . '[site-content-layout]', 'type' => 'control', 'control' => 'ast-radio-image', 'sanitize_callback' => array( 'Astra_Customizer_Sanitizes', 'sanitize_choices' ), 'section' => 'section-container-layout', 'default' => astra_get_option( 'site-content-layout' ), 'priority' => 9, 'title' => __( 'Container Layout', 'astra' ), 'choices' => array( 'boxed-container' => array( 'label' => __( 'Boxed', 'astra' ), 'path' => ( class_exists( 'Astra_Builder_UI_Controller' ) ) ? Astra_Builder_UI_Controller::fetch_svg_icon( 'container-boxed', false ) : '', ), 'content-boxed-container' => array( 'label' => __( 'Content Boxed', 'astra' ), 'path' => ( class_exists( 'Astra_Builder_UI_Controller' ) ) ? Astra_Builder_UI_Controller::fetch_svg_icon( 'container-content-boxed', false ) : '', ), 'plain-container' => array( 'label' => __( 'Full Width / Contained', 'astra' ), 'path' => ( class_exists( 'Astra_Builder_UI_Controller' ) ) ? Astra_Builder_UI_Controller::fetch_svg_icon( 'container-full-width-contained', false ) : '', ), 'page-builder' => array( 'label' => __( 'Full Width / Stretched', 'astra' ), 'path' => ( class_exists( 'Astra_Builder_UI_Controller' ) ) ? Astra_Builder_UI_Controller::fetch_svg_icon( 'container-full-width-stretched', false ) : '', ), 'narrow-container' => array( 'label' => __( 'Narrow Width', 'astra' ), 'path' => ( class_exists( 'Astra_Builder_UI_Controller' ) ) ? Astra_Builder_UI_Controller::fetch_svg_icon( 'narrow-container', false ) : '', ), ), 'divider' => array( 'ast_class' => 'ast-bottom-section-divider' ), ), /** * Option: Theme color heading */ array( 'name' => ASTRA_THEME_SETTINGS . '[surface-colors-title]', 'section' => $_section, 'title' => __( 'Surface Color', 'astra' ), 'type' => 'control', 'control' => 'ast-group-title', 'priority' => 25, 'responsive' => true, 'settings' => array(), 'input_attrs' => array( 'reset_linked_controls' => array( 'site-layout-outside-bg-obj-responsive', 'content-bg-obj-responsive', ), ), ), /** * Option: Body Background */ array( 'name' => ASTRA_THEME_SETTINGS . '[site-layout-outside-bg-obj-responsive]', 'type' => 'control', 'control' => 'ast-responsive-background', 'default' => astra_get_option( 'site-layout-outside-bg-obj-responsive' ), 'section' => $_section, 'transport' => 'postMessage', 'priority' => 25, 'input_attrs' => array( 'ignore_responsive_btns' => true, ), 'title' => __( 'Site Background', 'astra' ), ), ); $section_content_bg_obj = ( class_exists( 'Astra_Ext_Extension' ) && Astra_Ext_Extension::is_active( 'colors-and-background' ) ) ? 'section-colors-body' : 'section-colors-background'; if ( astra_has_gcp_typo_preset_compatibility() ) { $_configs[] = array( 'name' => ASTRA_THEME_SETTINGS . '[content-bg-obj-responsive]', 'default' => astra_get_option( 'content-bg-obj-responsive' ), 'type' => 'control', 'control' => 'ast-responsive-background', 'section' => $_section, 'title' => __( 'Content Background', 'astra' ), 'transport' => 'postMessage', 'input_attrs' => array( 'ignore_responsive_btns' => true, ), 'priority' => 25, 'divider' => defined( 'ASTRA_EXT_VER' ) && Astra_Ext_Extension::is_active( 'colors-and-background' ) ? array( 'ast_class' => 'ast-bottom-section-divider' ) : array(), ); } $configurations = array_merge( $configurations, $_configs ); // Learn More link if Astra Pro is not activated. if ( astra_showcase_upgrade_notices() ) { $config = array( array( 'name' => ASTRA_THEME_SETTINGS . '[ast-site-layout-button-link]', 'type' => 'control', 'control' => 'ast-upgrade', 'renderAs' => 'list', 'choices' => array( 'one' => array( 'title' => __( 'Full Width layout', 'astra' ), ), 'two' => array( 'title' => __( 'Padded layout', 'astra' ), ), 'three' => array( 'title' => __( 'Fluid layout', 'astra' ), ), 'four' => array( 'title' => __( 'Container spacings', 'astra' ), ), ), 'section' => 'section-container-layout', 'default' => '', 'priority' => 999, 'title' => __( 'Use containers to their maximum potential with Astra Pro', 'astra' ), 'divider' => array( 'ast_class' => 'ast-top-section-divider' ), ), ); $configurations = array_merge( $configurations, $config ); } return $configurations; } } } new Astra_Site_Container_Layout_Configs();