'header_topbar_bg_color1', 'label' => __('Header Top Bar Background Color', 'ibiz'), 'description' => __('Change Top bar Background Color', 'ibiz'), 'section' => 'colors', 'type' => 'color', 'priority' => 9, 'default' => '#f8504b', 'sanitize_callback' => 'awada_sanitize_color', 'output' => array( array( 'element' => '#sitetopbar', 'property' => 'background', ), array( 'element' => '#sitetopbar', 'property' => 'border-bottom', ), ), 'transport' => 'auto', )); Kirki::add_field('awada_theme', array( 'settings' => 'copyright_section_bg_color', 'label' => __('Copyright Section Background Color', 'ibiz'), 'description' => __('Change Copyright Section Background Color', 'ibiz'), 'section' => 'footer_sec', 'type' => 'color', 'priority' => 9, 'default' => '#f8504b', 'sanitize_callback' => 'awada_sanitize_color', 'output' => array( array( 'element' => '#copyrights', 'property' => 'background', ), ), 'transport' => 'auto', )); Kirki::add_field('awada_theme', array( 'settings' => 'footer_text_color', 'label' => __('Footer Text Color', 'ibiz'), 'description' => __('Change Footer Text Color', 'ibiz'), 'section' => 'footer_sec', 'type' => 'color', 'priority' => 9, 'default' => '#f8504b', 'sanitize_callback' => 'awada_sanitize_color', 'output' => array( array( 'element' => '#awada_footer_area li a, #awada_footer_area a', 'property' => 'color', ), ), 'transport' => 'auto', )); } add_action('after_setup_theme', 'iBiz_theme_setup'); function iBiz_customize_register_active( $wp_customize ) { $awada_theme_options = awada_theme_options(); if ($awada_theme_options['site_layout'] != 'boxed') { $wp_customize->remove_section('background_image'); } $wp_customize->remove_control('header_textcolor'); $wp_customize->remove_control('awada_theme_options[color_scheme]'); $wp_customize->remove_control('awada_theme_options[header_topbar_bg_color]'); wp_enqueue_style('ibiz-customizercu_css',get_stylesheet_directory_uri().'/css/customizer.css'); $wp_customize->add_section( 'awada_pro' , array( 'title' => __( 'Upgrade to Awada Premium', 'ibiz' ), 'priority' => 999, 'panel'=>'awada_option_panel', ) ); $wp_customize->add_setting( 'awada_pro', array( 'default' => null, 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( new Ibiz_Pro_Control( $wp_customize, 'awada_pro', array( 'label' => __( 'Awada Premium', 'ibiz' ), 'section' => 'awada_pro', 'settings' => 'awada_pro', 'priority' => 1, ) ) ); } add_action( 'customize_register', 'iBiz_customize_register_active', 100); if ( class_exists( 'WP_Customize_Control' ) && ! class_exists( 'Ibiz_Pro_Control' ) ) : class Ibiz_Pro_Control extends WP_Customize_Control { /** * Render the content on the theme customizer page */ public function render_content() { ?>