add_section('section_header', array( 'title' => esc_html__('Top Header Options', 'agency-ecommerce'), 'priority' => 10, 'panel' => 'agency_ecommerce_theme_option_panel', ) ); // Setting show_top_header. $wp_customize->add_setting('agency_ecommerce_theme_options[show_top_header]', array( 'default' => $default['show_top_header'], 'sanitize_callback' => 'agency_ecommerce_sanitize_checkbox', ) ); $wp_customize->add_control('agency_ecommerce_theme_options[show_top_header]', array( 'label' => esc_html__('Show Top Header', 'agency-ecommerce'), 'section' => 'section_header', 'type' => 'checkbox', 'priority' => 10, ) ); //Top Left Section $wp_customize->add_setting('agency_ecommerce_theme_options[top_left_info]', array( 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( new Agency_Ecommerce_Info( $wp_customize, 'agency_ecommerce_theme_options[top_left_info]', array( 'label' => esc_html__('Left Section', 'agency-ecommerce'), 'section' => 'section_header', 'priority' => 20, 'active_callback' => 'agency_ecommerce_is_top_header_active', ) ) ); // Setting top_left_type $wp_customize->add_setting('agency_ecommerce_theme_options[top_left_type]', array( 'default' => $default['top_left_type'], 'sanitize_callback' => 'agency_ecommerce_sanitize_select', ) ); $wp_customize->add_control('agency_ecommerce_theme_options[top_left_type]', array( 'label' => esc_html__('Left Section Options', 'agency-ecommerce'), 'section' => 'section_header', 'type' => 'select', 'priority' => 30, 'choices' => array( 'store-info' => esc_html__('Store Information', 'agency-ecommerce'), 'current-date' => esc_html__('Current Date', 'agency-ecommerce'), 'menu' => esc_html__('Navigation Menu', 'agency-ecommerce'), ), 'active_callback' => 'agency_ecommerce_is_top_header_active', ) ); // Setting Address. $wp_customize->add_setting('agency_ecommerce_theme_options[top_address]', array( 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control('agency_ecommerce_theme_options[top_address]', array( 'label' => esc_html__('Address/Location', 'agency-ecommerce'), 'section' => 'section_header', 'type' => 'text', 'priority' => 40, 'active_callback' => 'agency_ecommerce_is_top_header_information_active', ) ); // Setting Phone. $wp_customize->add_setting('agency_ecommerce_theme_options[top_phone]', array( 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control('agency_ecommerce_theme_options[top_phone]', array( 'label' => esc_html__('Phone Number', 'agency-ecommerce'), 'section' => 'section_header', 'type' => 'text', 'priority' => 50, 'active_callback' => 'agency_ecommerce_is_top_header_information_active', ) ); // Setting Email. $wp_customize->add_setting('agency_ecommerce_theme_options[top_email]', array( 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control('agency_ecommerce_theme_options[top_email]', array( 'label' => esc_html__('Email', 'agency-ecommerce'), 'section' => 'section_header', 'type' => 'text', 'priority' => 60, 'active_callback' => 'agency_ecommerce_is_top_header_information_active', ) ); //Top Right Section $wp_customize->add_setting('agency_ecommerce_theme_options[top_right_info]', array( 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( new Agency_Ecommerce_Info( $wp_customize, 'agency_ecommerce_theme_options[top_right_info]', array( 'label' => esc_html__('Right Section', 'agency-ecommerce'), 'section' => 'section_header', 'priority' => 70, 'active_callback' => 'agency_ecommerce_is_top_header_active', ) ) ); // Setting show_social_icons. $wp_customize->add_setting('agency_ecommerce_theme_options[show_social_icons]', array( 'default' => $default['show_social_icons'], 'sanitize_callback' => 'agency_ecommerce_sanitize_checkbox', ) ); $wp_customize->add_control('agency_ecommerce_theme_options[show_social_icons]', array( 'label' => esc_html__('Show Social Icons', 'agency-ecommerce'), 'description' => esc_html__('(Go to Appearance >> Customize >> Social Options and add your social links there.)', 'agency-ecommerce'), 'section' => 'section_header', 'type' => 'checkbox', 'priority' => 80, 'active_callback' => 'agency_ecommerce_is_top_header_active', ) ); // Setting show_login_logout. $wp_customize->add_setting('agency_ecommerce_theme_options[show_login_logout]', array( 'default' => $default['show_login_logout'], 'sanitize_callback' => 'agency_ecommerce_sanitize_checkbox', ) ); $wp_customize->add_control('agency_ecommerce_theme_options[show_login_logout]', array( 'label' => esc_html__('Show Login/Register', 'agency-ecommerce'), 'section' => 'section_header', 'type' => 'checkbox', 'priority' => 90, 'active_callback' => 'agency_ecommerce_is_top_header_active', ) ); // Setting login text. $wp_customize->add_setting('agency_ecommerce_theme_options[login_icon]', array( 'default' => $default['login_icon'], 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control('agency_ecommerce_theme_options[login_icon]', array( 'label' => esc_html__('Login/Register Icon', 'agency-ecommerce'), 'description' => esc_html__('Fontawesome icons are only supported.', 'agency-ecommerce'), 'section' => 'section_header', 'type' => 'text', 'priority' => 100, 'active_callback' => 'agency_ecommerce_is_top_login_logout_active', ) ); // Setting login text. $wp_customize->add_setting('agency_ecommerce_theme_options[login_text]', array( 'default' => $default['login_text'], 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control('agency_ecommerce_theme_options[login_text]', array( 'label' => esc_html__('Login/Register Text', 'agency-ecommerce'), 'section' => 'section_header', 'type' => 'text', 'priority' => 110, 'active_callback' => 'agency_ecommerce_is_top_login_logout_active', ) ); if (class_exists('WooCommerce')) { // Setting show_wishlist. $wp_customize->add_setting('agency_ecommerce_theme_options[show_wishlist]', array( 'default' => $default['show_wishlist'], 'sanitize_callback' => 'agency_ecommerce_sanitize_checkbox', ) ); $wp_customize->add_control('agency_ecommerce_theme_options[show_wishlist]', array( 'label' => esc_html__('Show Wishlist Icon (Works if YITH Wishlist plugin is activated)', 'agency-ecommerce'), 'section' => 'section_header', 'type' => 'checkbox', 'priority' => 120, 'active_callback' => 'agency_ecommerce_is_top_header_active', ) ); // Setting wishlist icon. $wp_customize->add_setting('agency_ecommerce_theme_options[wishlist_icon]', array( 'default' => $default['wishlist_icon'], 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control('agency_ecommerce_theme_options[wishlist_icon]', array( 'label' => esc_html__('Wishlist Icon', 'agency-ecommerce'), 'description' => esc_html__('Fontawesome icons are only supported.', 'agency-ecommerce'), 'section' => 'section_header', 'type' => 'text', 'priority' => 130, 'active_callback' => 'agency_ecommerce_is_top_wishlist_active', ) ); // Setting show_cart. $wp_customize->add_setting('agency_ecommerce_theme_options[show_cart]', array( 'default' => $default['show_cart'], 'sanitize_callback' => 'agency_ecommerce_sanitize_checkbox', ) ); $wp_customize->add_control('agency_ecommerce_theme_options[show_cart]', array( 'label' => esc_html__('Show Cart Icon', 'agency-ecommerce'), 'section' => 'section_header', 'type' => 'checkbox', 'priority' => 140, 'active_callback' => 'agency_ecommerce_is_top_header_active', ) ); // Setting cart text. $wp_customize->add_setting('agency_ecommerce_theme_options[cart_icon]', array( 'default' => $default['cart_icon'], 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control('agency_ecommerce_theme_options[cart_icon]', array( 'label' => esc_html__('Cart Icon', 'agency-ecommerce'), 'description' => esc_html__('Fontawesome icons are only supported.', 'agency-ecommerce'), 'section' => 'section_header', 'type' => 'text', 'priority' => 150, 'active_callback' => 'agency_ecommerce_is_top_cart_active', ) ); // Setting show_top_search. $wp_customize->add_setting('agency_ecommerce_theme_options[show_top_search]', array( 'default' => $default['show_top_search'], 'sanitize_callback' => 'agency_ecommerce_sanitize_checkbox', ) ); $wp_customize->add_control('agency_ecommerce_theme_options[show_top_search]', array( 'label' => esc_html__('Show Product Search', 'agency-ecommerce'), 'description' => esc_html__('You can change search text from Customizing ▸ Theme Options ▸Search Text Options', 'agency-ecommerce'), 'section' => 'section_header', 'type' => 'checkbox', 'priority' => 160, ) ); }