'panel-header-builder-group', 'type' => 'panel', 'priority' => 20, 'title' => __( 'Header Builder', 'astra' ), ), // Section: Primary Header. array( 'name' => $_section, 'type' => 'section', 'title' => __( 'Primary Header', 'astra' ), 'panel' => 'panel-header-builder-group', 'priority' => 20, ), /** * Option: Header Builder Tabs */ array( 'name' => $_section . '-ast-context-tabs', 'section' => $_section, 'type' => 'control', 'control' => 'ast-builder-header-control', 'priority' => 0, 'description' => '', ), // Section: Primary Header Height. array( 'name' => ASTRA_THEME_SETTINGS . '[hb-header-height]', 'section' => $_section, 'transport' => 'postMessage', 'default' => astra_get_option( 'hb-header-height' ), 'priority' => 3, 'title' => __( 'Height', 'astra' ), 'type' => 'control', 'control' => 'ast-responsive-slider', 'suffix' => '', 'input_attrs' => array( 'min' => 30, 'step' => 1, 'max' => 600, ), 'context' => Astra_Builder_Helper::$general_tab, ), // Option: Header Separator. array( 'name' => ASTRA_THEME_SETTINGS . '[hb-header-main-sep]', 'transport' => 'postMessage', 'default' => astra_get_option( 'hb-header-main-sep' ), 'type' => 'control', 'control' => 'ast-slider', 'section' => $_section, 'priority' => 4, 'title' => __( 'Bottom Border', 'astra' ), 'input_attrs' => array( 'min' => 0, 'step' => 1, 'max' => 10, ), 'context' => Astra_Builder_Helper::$design_tab, ), // Option: Header Bottom Boder Color. array( 'name' => ASTRA_THEME_SETTINGS . '[hb-header-main-sep-color]', 'transport' => 'postMessage', 'default' => astra_get_option( 'hb-header-main-sep-color' ), 'type' => 'control', 'control' => 'ast-color', 'section' => $_section, 'priority' => 5, 'title' => __( 'Bottom Border Color', 'astra' ), 'context' => array( Astra_Builder_Helper::$design_tab_config, array( 'setting' => ASTRA_THEME_SETTINGS . '[hb-header-main-sep]', 'operator' => '>=', 'value' => 1, ), ), ), // Option: Primary Header color and background divider. array( 'name' => ASTRA_THEME_SETTINGS . '[hb-header-colors-and-background-divider]', 'type' => 'control', 'control' => 'ast-heading', 'section' => $_section, 'title' => __( 'Background Color & Image', 'astra' ), 'priority' => 6, 'settings' => array(), 'context' => Astra_Builder_Helper::$design_tab, ), // Sub Option: Header Background. array( 'name' => ASTRA_THEME_SETTINGS . '[hb-header-bg-obj-responsive]', 'section' => $_section, 'type' => 'control', 'control' => 'ast-responsive-background', 'transport' => 'postMessage', 'context' => Astra_Builder_Helper::$design_tab, 'priority' => 7, 'data_attrs' => array( 'name' => 'hb-header-bg-obj-responsive', ), 'default' => astra_get_option( 'hb-header-bg-obj-responsive' ), 'title' => __( 'Color & Image', 'astra' ), ), ); $_configs = array_merge( $_configs, Astra_Builder_Base_Configuration::prepare_advanced_tab( $_section ) ); $_configs = array_merge( $_configs, Astra_Builder_Base_Configuration::prepare_visibility_tab( $_section ) ); return array_merge( $configurations, $_configs ); } } /** * Kicking this off by creating object of this class. */ new Astra_Customizer_Primary_Header_Configs(); }