get_section( 'colors' )->priority = 1; $wp_customize->remove_control( 'header_textcolor' ); $wp_customize->get_section( 'colors' )->title = esc_html__( 'Colors', 'bootstrap-fitness' ); $wp_customize->get_section( 'colors' )->panel = 'bootstrap_fitness_general_panel'; $wp_customize->add_setting( 'primary_color', array( 'capability' => 'edit_theme_options', 'default' => '#FD5958', 'sanitize_callback' => 'bootstrap_fitness_sanitize_hex_color', 'transport' => 'postMessage', ) ); $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'primary_color', array( 'label' => esc_html__( 'Primary Color', 'bootstrap-fitness' ), 'section' => 'colors', 'priority' => 1, )) ); $wp_customize->add_setting( 'secondary_color', array( 'capability' => 'edit_theme_options', 'default' => '#000000', 'sanitize_callback' => 'bootstrap_fitness_sanitize_hex_color', 'transport' => 'postMessage', ) ); $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'secondary_color', array( 'label' => esc_html__( 'Secondary Color', 'bootstrap-fitness' ), 'section' => 'colors', 'priority' => 2, )) ); if ( fs_bootstrap_fitness()->is_free_plan() ) { $wp_customize->add_setting( 'bootstrap_fitness_colors_upgrade_to_pro', array( 'sanitize_callback' => null, ) ); $wp_customize->add_control( new Bootstrap_Fitness_Control_Upgrade_To_Pro($wp_customize, 'bootstrap_fitness_colors_upgrade_to_pro', array( 'section' => 'colors', 'settings' => 'bootstrap_fitness_colors_upgrade_to_pro', 'title' => __( 'Choose colors that perfectly align with your brand.', 'bootstrap-fitness' ), 'items' => array( 'one' => array( 'title' => __( 'Additional color options for various parts of your website.', 'bootstrap-fitness' ), ), ), 'button_url' => esc_url( 'https://thebootstrapthemes.com/fitness-gym/#free-vs-pro' ), 'button_text' => __( 'Upgrade Now', 'bootstrap-fitness' ), )) ); } }