get_setting( 'blogname' )->transport = 'postMessage';
$wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage';
$wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage';
$wp_customize->add_panel('buzzstore_general_settings', array(
'capabitity' => 'edit_theme_options',
'priority' => 4,
'title' => esc_html__('General Settings', 'buzzstore')
));
$wp_customize->get_section('title_tagline' )->panel = 'buzzstore_general_settings';
$wp_customize->get_section('title_tagline' )->priority = 1;
require get_template_directory() . '/sparklethemes/customizer/blog-grid-settings.php';
$wp_customize->add_setting( 'buzzstore_primary_color', array(
'sanitize_callback' => 'sanitize_hex_color',
'default' => '#86bc42'
));
$wp_customize->add_control('buzzstore_primary_color', array(
'settings' => 'buzzstore_primary_color',
'label' => esc_html__('Primary Color', 'buzzstore'),
'section' => 'colors',
'type' => 'color'
)
);
/**
* Important Link
*/
$wp_customize->add_section( 'buzzstore_implink_section', array(
'title' => esc_html__( 'Important Links', 'buzzstore' ),
'priority' => 1
) );
$wp_customize->add_setting( 'buzzstore_imp_links', array(
'sanitize_callback' => 'buzzstore_text_sanitize'
));
$wp_customize->add_control( new BuzzStore_theme_Info_Text( $wp_customize,'buzzstore_imp_links', array(
'settings' => 'buzzstore_imp_links',
'section' => 'buzzstore_implink_section',
'description' => ''.esc_html__('Documentation', 'buzzstore').''.esc_html__('Live Demo', 'buzzstore').''.esc_html__('Support Forum', 'buzzstore').''.esc_html__('Like us on Facebook', 'buzzstore').'',
)
));
$wp_customize->add_setting( 'buzzstore_rate_us', array(
'sanitize_callback' => 'buzzstore_text_sanitize'
));
$wp_customize->add_control( new BuzzStore_theme_Info_Text( $wp_customize, 'buzzstore_rate_us', array(
'settings' => 'buzzstore_rate_us',
'section' => 'buzzstore_implink_section',
'description' => sprintf(__( 'Please do rate our theme if you liked it %1$s', 'buzzstore'), ''.esc_html__('Rate/Review','buzzstore').'' ),
)
));
$wp_customize->add_setting( 'buzzstore_setup_instruction', array(
'sanitize_callback' => 'buzzstore_text_sanitize',
));
$wp_customize->add_control( new BuzzStore_Theme_Features_List( $wp_customize, 'buzzstore_setup_instruction', array(
'label' => esc_html__('Buzzstore Pro Features', 'buzzstore'),
'settings' => 'buzzstore_setup_instruction',
'section' => 'buzzstore_implink_section',
)
));
/**
* Web Page Layout Section
*/
$wp_customize->add_section( 'buzzstore_web_page_layout', array(
'title' => esc_html__('Web Layout', 'buzzstore'),
'priority' => 2,
'panel' => 'buzzstore_general_settings'
));
$wp_customize->add_setting('buzzstore_webpage_layout_options', array(
'default' => 'fullwidth',
'sanitize_callback' => 'buzzstore_weblayout_sanitize',
));
$wp_customize->add_control('buzzstore_webpage_layout_options', array(
'type' => 'radio',
'label' => esc_html__('Web Layout', 'buzzstore'),
'section' => 'buzzstore_web_page_layout',
'settings' => 'buzzstore_webpage_layout_options',
'choices' => array(
'boxed' => esc_html__('Boxed', 'buzzstore'),
'fullwidth' => esc_html__('Full Width', 'buzzstore')
)
));
$wp_customize->get_section('colors' )->panel = 'buzzstore_general_settings';
$wp_customize->get_section('colors')->title = esc_html__( 'Theme Colors', 'buzzstore' );
$wp_customize->get_section('colors' )->priority = 3;
$wp_customize->get_section('header_image' )->panel = 'buzzstore_general_settings';
$wp_customize->get_section('background_image' )->panel = 'buzzstore_general_settings';
$wp_customize->get_section('background_image' )->priority = 4;
$buzz_imagepath = get_template_directory_uri() . '/assets/images/';
/************************************************************************************
** Top Header Settings Options
*************************************************************************************/
$wp_customize->add_panel('buzzstore_top_header_section', array(
'capabitity' => 'edit_theme_options',
'description' => esc_html__('Change the top header settings here as you want', 'buzzstore'),
'priority' => 5,
'title' => esc_html__('Top Header', 'buzzstore')
));
/**
* Top Header General Settings Section
*/
$wp_customize->add_section('buzzstore_top_header_general_settings', array(
'title' => esc_html__('Top Header General', 'buzzstore'),
'panel' => 'buzzstore_top_header_section',
'priority' => 1,
));
$wp_customize->add_setting('buzzstore_top_header_display_options', array(
'default' => 'yes',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'buzzstore_radio_sanitize' // done
));
$wp_customize->add_control('buzzstore_top_header_display_options', array(
'type' => 'radio',
'label' => esc_html__('Enable/Disable Top Header','buzzstore'),
'description' => esc_html__('Choose the option as you want', 'buzzstore'),
'section' => 'buzzstore_top_header_general_settings',
'choices' => array(
'yes' => esc_html__('Enable', 'buzzstore'),
'no' => esc_html__('Disable', 'buzzstore'),
)
));
$wp_customize->add_setting('buzzstore_top_header_background_color', array(
'default' => '#333333',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_hex_color',
));
$wp_customize->add_control('buzzstore_top_header_background_color', array(
'type' => 'color',
'label' => esc_html__('Background Color','buzzstore'),
'description' => esc_html__('Select top header background color as you want', 'buzzstore'),
'section' => 'buzzstore_top_header_general_settings',
));
$wp_customize->add_setting('buzzstore_top_header_link_color', array(
'default' => '#fff',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_hex_color',
));
$wp_customize->add_control('buzzstore_top_header_link_color', array(
'type' => 'color',
'label' => esc_html__('Link Color','buzzstore'),
'description' => esc_html__('Select top header link color as you want', 'buzzstore'),
'section' => 'buzzstore_top_header_general_settings',
));
$wp_customize->add_setting('buzzstore_top_header_link_hov_color', array(
'default' => '#ffffff',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_hex_color',
));
$wp_customize->add_control('buzzstore_top_header_link_hov_color', array(
'type' => 'color',
'label' => esc_html__('Link Hover Color','buzzstore'),
'description' => esc_html__('Select top header link hover color as you want', 'buzzstore'),
'section' => 'buzzstore_top_header_general_settings',
));
$wp_customize->add_setting('buzzstore_top_header_icon_color', array(
'default' => '#fff',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_hex_color',
));
$wp_customize->add_control('buzzstore_top_header_icon_color', array(
'type' => 'color',
'label' => esc_html__('Icon Color','buzzstore'),
'description' => esc_html__('Select top header icon color as you want', 'buzzstore'),
'section' => 'buzzstore_top_header_general_settings',
));
$wp_customize->add_setting('buzzstore_top_header_icon_hov_color', array(
'default' => '#ffffff',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_hex_color',
));
$wp_customize->add_control('buzzstore_top_header_icon_hov_color', array(
'type' => 'color',
'label' => esc_html__('Icon Hover Color','buzzstore'),
'description' => esc_html__('Select top header icon hover color as you want', 'buzzstore'),
'section' => 'buzzstore_top_header_general_settings',
));
$wp_customize->add_setting('buzzstore_top_header_woo_label_color', array(
'default' => '#ffffff',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_hex_color',
));
$wp_customize->add_control('buzzstore_top_header_woo_label_color', array(
'type' => 'color',
'label' => esc_html__('Woo Label Color','buzzstore'),
'description' => esc_html__('Select woocommerce item label color as you want', 'buzzstore'),
'section' => 'buzzstore_top_header_general_settings',
));
$wp_customize->add_setting('buzzstore_top_header_woo_label_hov_color', array(
'default' => '#86bc42',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_hex_color',
));
$wp_customize->add_control('buzzstore_top_header_woo_label_hov_color', array(
'type' => 'color',
'label' => esc_html__('Woo Label Hover Color','buzzstore'),
'description' => esc_html__('Select woocommerce item label hover color as you want', 'buzzstore'),
'section' => 'buzzstore_top_header_general_settings',
));
$wp_customize->add_setting('buzzstore_top_header_woo_icon_color', array(
'default' => '#ffffff',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_hex_color',
));
$wp_customize->add_control('buzzstore_top_header_woo_icon_color', array(
'type' => 'color',
'label' => esc_html__('Woo Icon Color','buzzstore'),
'description' => esc_html__('Select woocommerce item icon color as you want', 'buzzstore'),
'section' => 'buzzstore_top_header_general_settings',
));
$wp_customize->add_setting('buzzstore_top_header_woo_icon_hov_color', array(
'default' => '#86bc42',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_hex_color',
));
$wp_customize->add_control('buzzstore_top_header_woo_icon_hov_color', array(
'type' => 'color',
'label' => esc_html__('Woo Icon Hover Color','buzzstore'),
'description' => esc_html__('Select woocommerce item icon hover color as you want', 'buzzstore'),
'section' => 'buzzstore_top_header_general_settings',
));
/**
* Top Header Left Side Settings Section
*/
$wp_customize->add_section('buzzstore_top_header_leftside_settings', array(
'title' => esc_html__('Top Header Left Side', 'buzzstore'),
'panel' => 'buzzstore_top_header_section',
'priority' => 2,
));
$wp_customize->add_setting('buzzstore_header_leftside_options', array(
'default' => 'topnavmenu',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'buzzstore_header_leftside_style_sanitize' // done
));
$wp_customize->add_control('buzzstore_header_leftside_options', array(
'type' => 'radio',
'label' => esc_html__('Choose options as you want', 'buzzstore'),
'description' => esc_html__('Choose any one options as you want and enter related Information', 'buzzstore'),
'section' => 'buzzstore_top_header_leftside_settings',
'settings' => 'buzzstore_header_leftside_options',
'choices' => array(
'socialicon' => esc_html__('Social Icons','buzzstore'),
'topnavmenu' => esc_html__('Top Nav Menu','buzzstore'),
'quickinfo' => esc_html__('Quick Information','buzzstore')
)
));
/**
* Active Callback function for quick information
*/
$wp_customize->add_setting('buzzstore_quick_map_address', array(
'default' => '',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'buzzstore_text_sanitize' //done
));
$wp_customize->add_control('buzzstore_quick_map_address', array(
'type' => 'text',
'label' => esc_html__('Enter Map Address :', 'buzzstore'),
'section' => 'buzzstore_top_header_leftside_settings',
'settings' => 'buzzstore_quick_map_address',
'active_callback' => 'buzzstore_quickinfo_email_address'
));
$wp_customize->add_setting('buzzstore_quick_email', array(
'default' => '',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_email' //done
));
$wp_customize->add_control('buzzstore_quick_email', array(
'type' => 'text',
'label' => esc_html__('Enter Email Address :', 'buzzstore'),
'section' => 'buzzstore_top_header_leftside_settings',
'settings' => 'buzzstore_quick_email',
'active_callback' => 'buzzstore_quickinfo_email_address'
));
$wp_customize->add_setting('buzzstore_quick_phone', array(
'default' => '',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'buzzstore_text_sanitize' //done
));
$wp_customize->add_control('buzzstore_quick_phone', array(
'type' => 'text',
'label' => esc_html__('Enter Phone Number :', 'buzzstore'),
'section' => 'buzzstore_top_header_leftside_settings',
'settings' => 'buzzstore_quick_phone',
'active_callback' => 'buzzstore_quickinfo_email_address'
));
/**
* Top Header Right Side Settings Section
*/
$wp_customize->add_section('buzzstore_top_header_rightside_settings', array(
'title' => esc_html__('Top Header Right Side', 'buzzstore'),
'panel' => 'buzzstore_top_header_section',
'priority' => 3,
));
$wp_customize->add_setting('buzzstore_display_wishlist', array(
'default' => 1,
'capability' => 'edit_theme_options',
'sanitize_callback' => 'buzzstore_checkbox_sanitize' //done
));
$wp_customize->add_control('buzzstore_display_wishlist', array(
'type' => 'checkbox',
'label' => esc_html__('Check to show the wishlist', 'buzzstore'),
'description' => esc_html__('(Requires WooCommerce Wishlist Installed)', 'buzzstore'),
'section' => 'buzzstore_top_header_rightside_settings',
'settings' => 'buzzstore_display_wishlist'
));
$wp_customize->add_setting('buzzstore_display_myaccount_login', array(
'default' => 1,
'capability' => 'edit_theme_options',
'sanitize_callback' => 'buzzstore_checkbox_sanitize' //done
));
$wp_customize->add_control('buzzstore_display_myaccount_login', array(
'type' => 'checkbox',
'label' => esc_html__('Check to show the my account', 'buzzstore'),
'description' => esc_html__('Check to show the my account or login/register menu (Requires WooCommerce)', 'buzzstore'),
'section' => 'buzzstore_top_header_rightside_settings',
'settings' => 'buzzstore_display_myaccount_login'
));
/**
* Start of the Social Link Options
*/
$wp_customize->add_section('buzzstore_social_link_activate_settings', array(
'priority' => 6,
'title' => esc_html__('Social Media', 'buzzstore'),
'description' => esc_html__('Displays Social Media in Header & Footer', 'buzzstore'),
'panel' => 'buzzstore_top_header_section',
));
$buzzstore_social_links = array(
'buzzstore_social_facebook' => array(
'id' => 'buzzstore_social_facebook',
'title' => esc_html__('Facebook', 'buzzstore'),
'default' => ''
),
'buzzstore_social_twitter' => array(
'id' => 'buzzstore_social_twitter',
'title' => esc_html__('Twitter', 'buzzstore'),
'default' => ''
),
'buzzstore_social_instagram' => array(
'id' => 'buzzstore_social_instagram',
'title' => esc_html__('Instagram', 'buzzstore'),
'default' => ''
),
'buzzstore_social_pinterest' => array(
'id' => 'buzzstore_social_pinterest',
'title' => esc_html__('Pinterest', 'buzzstore'),
'default' => ''
),
'buzzstore_social_youtube' => array(
'id' => 'buzzstore_social_youtube',
'title' => esc_html__('YouTube', 'buzzstore'),
'default' => ''
),
);
$i = 20;
foreach($buzzstore_social_links as $buzzstore_social_link) {
$wp_customize->add_setting($buzzstore_social_link['id'], array(
'default' => $buzzstore_social_link['default'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'esc_url_raw' // done
));
$wp_customize->add_control($buzzstore_social_link['id'], array(
'label' => $buzzstore_social_link['title'],
'section'=> 'buzzstore_social_link_activate_settings',
'settings'=> $buzzstore_social_link['id'],
'priority' => $i
));
$wp_customize->add_setting($buzzstore_social_link['id'].'_checkbox', array(
'default' => 0,
'capability' => 'edit_theme_options',
'sanitize_callback' => 'buzzstore_checkbox_sanitize' // done
));
$wp_customize->add_control($buzzstore_social_link['id'].'_checkbox', array(
'type' => 'checkbox',
'label' => esc_html__('Check to show in new tab', 'buzzstore'),
'section'=> 'buzzstore_social_link_activate_settings',
'settings'=> $buzzstore_social_link['id'].'_checkbox',
'priority' => $i
));
$i++;
}
/**
* Main Header Section
*/
$wp_customize->add_section('buzzstore_main_header_settings', array(
'title' => esc_html__('Main Header', 'buzzstore'),
'priority' => 6,
));
$wp_customize->add_setting('buzzstore_search_options', array(
'default' => 1,
'capability' => 'edit_theme_options',
'sanitize_callback' => 'buzzstore_checkbox_sanitize' //done
));
$wp_customize->add_control('buzzstore_search_options', array(
'type' => 'checkbox',
'label' => esc_html__('Enable Search', 'buzzstore'),
'section' => 'buzzstore_main_header_settings',
'settings' => 'buzzstore_search_options'
));
$wp_customize->add_setting('buzzstore_search_type', array(
'default' => 'no',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'buzzstore_radio_sanitize' // done
));
$wp_customize->add_control('buzzstore_search_type', array(
'type' => 'radio',
'label' => esc_html__('Search Type', 'buzzstore'),
'section' => 'buzzstore_main_header_settings',
'choices' => array(
'yes' => esc_html__('Normal Search', 'buzzstore'),
'no' => esc_html__('Advance Search With Category', 'buzzstore'),
)
));
$wp_customize->add_setting('buzzstore_search_options_placeholder', array(
'default' => 'Product Search...',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'buzzstore_text_sanitize' //done
));
$wp_customize->add_control('buzzstore_search_options_placeholder', array(
'type' => 'text',
'label' => esc_html__('Search Box Placeholder Text', 'buzzstore'),
'section' => 'buzzstore_main_header_settings',
'settings' => 'buzzstore_search_options_placeholder'
));
/**
* Banner/Slider Settings Panel
*/
$wp_customize->add_section('buzzstore_main_banner_area', array(
'title' => esc_html__('Home Slider', 'buzzstore'),
'priority' => 7,
));
$wp_customize->add_setting('buzzstore_slider_section', array(
'default' => 'enable',
'sanitize_callback' => 'buzzstore_radio_enable_sanitize', // done
));
$wp_customize->add_control('buzzstore_slider_section', array(
'type' => 'radio',
'label' => esc_html__('Enable/Disable Home Slider', 'buzzstore'),
'description' => esc_html__('Choose the option as you want', 'buzzstore'),
'section' => 'buzzstore_main_banner_area',
'setting' => 'buzzstore_slider_section',
'choices' => array(
'enable' => esc_html__('Enable', 'buzzstore'),
'disable' => esc_html__('Disable', 'buzzstore'),
)));
/* Main Slider Category */
$wp_customize->add_setting( 'buzzstore_slider_team_id', array(
'default' => '',
'sanitize_callback' => 'absint',
) );
$wp_customize->add_control( new BuzzStore_Category_Dropdown( $wp_customize, 'buzzstore_slider_team_id', array(
'label' => esc_html__( 'Select Slider Category', 'buzzstore' ),
'description' => esc_html__('( Note :- Slider only works when you create a new page & set PageTemplate to Front Page & set the created page to HomePage in HomePage Settings. ) ', 'buzzstore'),
'section' => 'buzzstore_main_banner_area'
) ) );
/**
* HomePage Icon Text Block Section
*/
$wp_customize->add_section('buzzstore_icon_block', array(
'priority' => 7,
'title' => esc_html__('Icon Text Block', 'buzzstore'),
'description' => esc_html__('Icon Text Block are shown above the footer as services section. ( Note :- It only works when you create a new page & set PageTemplate to Front Page & set the created page to HomePage in HomePage Settings. )"', 'buzzstore'),
));
$wp_customize->add_setting('buzzstore_icon_block_section', array(
'default' => 'enable',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'buzzstore_radio_enable_sanitize', // done
));
$wp_customize->add_control('buzzstore_icon_block_section', array(
'type' => 'radio',
'label' => esc_html__('Enable/Disable Icon Text Block', 'buzzstore'),
'description' => esc_html__('Choose any option as you want','buzzstore'),
'section' => 'buzzstore_icon_block',
'setting' => 'buzzstore_icon_block_section',
'choices' => array(
'enable' => esc_html__('Enable', 'buzzstore'),
'disable' => esc_html__('Disable', 'buzzstore'),
)));
$wp_customize->add_setting('buzzstore_first_icon_block_area', array(
'default' => 'fa-user',
'sanitize_callback' => 'buzzstore_text_sanitize', // done
));
$wp_customize->add_control('buzzstore_first_icon_block_area',array(
'type' => 'text',
'description' => sprintf( esc_html__( 'Use font awesome icon: Eg: %1$s. %2$s See more here %3$s', 'buzzstore' ), 'fa-user','','' ),
'label' => esc_html__('First Block Icon', 'buzzstore'),
'section' => 'buzzstore_icon_block',
'setting' => 'buzzstore_first_icon_block_area',
));
$wp_customize->add_setting('buzzstore_first_title_icon_block_area', array(
'default' => '',
'sanitize_callback' => 'buzzstore_text_sanitize', // done
));
$wp_customize->add_control('buzzstore_first_title_icon_block_area',array(
'type' => 'textarea',
'label' => esc_html__('First Block Description', 'buzzstore'),
'section' => 'buzzstore_icon_block',
'setting' => 'buzzstore_first_title_icon_block_area',
));
$wp_customize->add_setting('buzzstore_second_icon_block_area', array(
'default' => 'fa-university',
'sanitize_callback' => 'buzzstore_text_sanitize', // done
));
$wp_customize->add_control('buzzstore_second_icon_block_area',array(
'type' => 'text',
'description' => sprintf( esc_html__( 'Use font awesome icon: Eg: %1$s. %2$s See more here %3$s', 'buzzstore' ), 'fa-university','','' ),
'label' => esc_html__('Second Block Icon', 'buzzstore'),
'section' => 'buzzstore_icon_block',
'setting' => 'buzzstore_second_icon_block_area',
));
$wp_customize->add_setting('buzzstore_second_title_icon_block_area', array(
'default' => '',
'sanitize_callback' => 'buzzstore_text_sanitize', // done
));
$wp_customize->add_control('buzzstore_second_title_icon_block_area',array(
'type' => 'textarea',
'label' => esc_html__('Second Block Text', 'buzzstore'),
'section' => 'buzzstore_icon_block',
'setting' => 'buzzstore_second_title_icon_block_area',
));
$wp_customize->add_setting('buzzstore_third_icon_block_area', array(
'default' => 'fa-futbol-o',
'sanitize_callback' => 'buzzstore_text_sanitize', // done
));
$wp_customize->add_control('buzzstore_third_icon_block_area',array(
'type' => 'text',
'description' => sprintf( esc_html__( 'Use font awesome icon: Eg: %1$s. %2$s See more here %3$s', 'buzzstore' ), 'fa-futbol-o','','' ),
'label' => esc_html__('Third Block Icon', 'buzzstore'),
'section' => 'buzzstore_icon_block',
'setting' => 'buzzstore_third_icon_block_area',
));
$wp_customize->add_setting('buzzstore_thired_title_icon_block_area', array(
'default' => '',
'sanitize_callback' => 'buzzstore_text_sanitize', // done
));
$wp_customize->add_control('buzzstore_thired_title_icon_block_area',array(
'type' => 'textarea',
'label' => esc_html__('Third Block Text', 'buzzstore'),
'section' => 'buzzstore_icon_block',
'setting' => 'buzzstore_thired_title_icon_block_area',
));
/**
* Home 1 - Full Width Section
*/
$buzzstore_home_section = $wp_customize->get_section( 'sidebar-widgets-buzzstorehomearea' );
if ( ! empty( $buzzstore_home_section ) ) {
$buzzstore_home_section->panel = '';
$buzzstore_home_section->title = esc_html__( 'Buzz : Home Main Widget Are', 'buzzstore' );
$buzzstore_home_section->priority = 8;
}
/**
* Breadcrumbs Settings
*/
$wp_customize->add_panel('buzzstore_breadcrumbs_settings', array(
'capability' => 'edit_theme_options',
'description'=> esc_html__('Manage breadcrumbs settings here as you want', 'buzzstore'),
'priority' => 8,
'title' => esc_html__('Breadcrumbs', 'buzzstore')
));
$wp_customize->add_section('buzzstore_woocommerce_breadcrumbs_settings', array(
'priority' => 2,
'title' => esc_html__('WooCommerce', 'buzzstore'),
'panel' => 'buzzstore_breadcrumbs_settings'
));
$wp_customize->add_setting('buzzstore_woocommerce_enable_disable_section', array(
'default' => 'enable',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'buzzstore_radio_enable_sanitize', // done
));
$wp_customize->add_control('buzzstore_woocommerce_enable_disable_section', array(
'type' => 'radio',
'label' => esc_html__('Enable/Disable Breadcrumbs Section', 'buzzstore'),
'description' => esc_html__('Choose any option as you want','buzzstore'),
'section' => 'buzzstore_woocommerce_breadcrumbs_settings',
'setting' => 'buzzstore_woocommerce_enable_disable_section',
'choices' => array(
'enable' => esc_html__('Enable', 'buzzstore'),
'disable' => esc_html__('Disable', 'buzzstore'),
)));
$wp_customize->add_setting('buzzstore_breadcrumbs_woocommerce_background_image', array(
'default' => '',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'esc_url_raw'
));
$wp_customize->add_control(new WP_Customize_Image_Control($wp_customize, 'buzzstore_breadcrumbs_woocommerce_background_image', array(
'label' => esc_html__('Upload Breadcrumbs Background Image', 'buzzstore'),
'section' => 'buzzstore_woocommerce_breadcrumbs_settings',
'setting' => 'buzzstore_breadcrumbs_woocommerce_background_image'
)));
$wp_customize->add_section('buzzstore_breadcrumbs_normal_page_section', array(
'priority' => 4,
'title' => esc_html__('Normal Page', 'buzzstore'),
'panel' => 'buzzstore_breadcrumbs_settings'
));
$wp_customize->add_setting('buzzstore_normal_page_enable_disable_section', array(
'default' => 'enable',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'buzzstore_radio_enable_sanitize', // done
));
$wp_customize->add_control('buzzstore_normal_page_enable_disable_section', array(
'type' => 'radio',
'label' => esc_html__('Enable or Disable Breadcrumbs Section', 'buzzstore'),
'description' => esc_html__('Choose any option as you want','buzzstore'),
'section' => 'buzzstore_breadcrumbs_normal_page_section',
'setting' => 'buzzstore_normal_page_enable_disable_section',
'choices' => array(
'enable' => esc_html__('Enable', 'buzzstore'),
'disable' => esc_html__('Disable', 'buzzstore'),
)));
$wp_customize->add_setting('buzzstore_breadcrumbs_normal_page_background_image', array(
'default' => '',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'esc_url_raw'
));
$wp_customize->add_control(new WP_Customize_Image_Control($wp_customize, 'buzzstore_breadcrumbs_normal_page_background_image', array(
'label' => esc_html__('Upload Breadcrumbs Background Image', 'buzzstore'),
'section' => 'buzzstore_breadcrumbs_normal_page_section',
'setting' => 'buzzstore_breadcrumbs_normal_page_background_image'
)));
$wp_customize->add_section('buzzstore_breadcrumbs_post_archive_page_section', array(
'priority' => 5,
'title' => esc_html__('Posts/Archive Page', 'buzzstore'),
'panel' => 'buzzstore_breadcrumbs_settings'
));
$wp_customize->add_setting('buzzstore_post_archive_page_enable_disable_section', array(
'default' => 'enable',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'buzzstore_radio_enable_sanitize', // done
));
$wp_customize->add_control('buzzstore_post_archive_page_enable_disable_section', array(
'type' => 'radio',
'label' => esc_html__('Enable or Disable Breadcrumbs Section', 'buzzstore'),
'description' => esc_html__('Choose any option as you want','buzzstore'),
'section' => 'buzzstore_breadcrumbs_post_archive_page_section',
'setting' => 'buzzstore_post_archive_page_enable_disable_section',
'choices' => array(
'enable' => esc_html__('Enable', 'buzzstore'),
'disable' => esc_html__('Disable', 'buzzstore'),
)));
$wp_customize->add_setting('buzzstore_breadcrumbs_post_archive_background_image', array(
'default' => '',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'esc_url_raw'
));
$wp_customize->add_control(new WP_Customize_Image_Control($wp_customize, 'buzzstore_breadcrumbs_post_archive_background_image', array(
'label' => esc_html__('Upload Breadcrumbs Background Image', 'buzzstore'),
'section' => 'buzzstore_breadcrumbs_post_archive_page_section',
'setting' => 'buzzstore_breadcrumbs_post_archive_background_image'
)));
if( buzzstore_is_woocommerce_activated() ) {
/**
* Start of the WooCommerce Design Options
*/
$wp_customize->add_panel('buzzstore_woocommerce_design_options', array(
'capabitity' => 'edit_theme_options',
'description' => esc_html__('Change the Design Settings and Options Settings of WooCommerce here as you want', 'buzzstore'),
'priority' => 9,
'title' => esc_html__('WooCommerce Settings', 'buzzstore')
));
$wp_customize->add_section('buzzstore_woocommerce_category_page_settings', array(
'priority' => 1,
'title' => esc_html__('Category Page', 'buzzstore'),
'panel' => 'buzzstore_woocommerce_design_options'
));
$wp_customize->add_setting('buzzstore_woocommerce_category_page_layout', array(
'default' => 'rightsidebar',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'buzzstore_layout_sanitize' //done
));
$wp_customize->add_control(new BuzzStore_Image_Radio_Control($wp_customize, 'buzzstore_woocommerce_category_page_layout', array(
'type' => 'radio',
'label' => esc_html__('WooCommerce Category Layout', 'buzzstore'),
'section' => 'buzzstore_woocommerce_category_page_settings',
'settings' => 'buzzstore_woocommerce_category_page_layout',
'choices' => array(
'leftsidebar' => $buzz_imagepath.'left-sidebar.png',
'rightsidebar' => $buzz_imagepath.'right-sidebar.png',
'nosidebar' => $buzz_imagepath.'no-sidebar.png',
)
)));
$wp_customize->add_setting('buzzstore_woocommerce_category_product_per_page', array(
'default' => 3,
'capability' => 'edit_theme_options',
'sanitize_callback' => 'buzzstore_product_per_page_sanitize' //done
));
$wp_customize->add_control('buzzstore_woocommerce_category_product_per_page', array(
'type' => 'select',
'label' => esc_html__('Number of Rows', 'buzzstore'),
'section' => 'buzzstore_woocommerce_category_page_settings',
'settings' => 'buzzstore_woocommerce_category_product_per_page',
'choices' => array(
'2' => '2',
'3' => '3',
'4' => '4',
)));
$wp_customize->add_setting('buzzstore_woocommerce_category_per_page_product_number', array(
'default' => 12,
'capability' => 'edit_theme_options',
'sanitize_callback' => 'buzzstore_sanitize_number' // done
));
$wp_customize->add_control('buzzstore_woocommerce_category_per_page_product_number', array(
'type' => 'number',
'label' => esc_html__('Number of Products Per Page', 'buzzstore'),
'section' => 'buzzstore_woocommerce_category_page_settings',
'settings' => 'buzzstore_woocommerce_category_per_page_product_number'
));
/**
* WooCommerce Product Single Page Settings
*/
$wp_customize->add_section('buzzstore_woocommerce_product_page_settings', array(
'priority' => 2,
'title' => esc_html__('Product Page', 'buzzstore'),
'panel' => 'buzzstore_woocommerce_design_options'
));
$wp_customize->add_setting('buzzstore_woocommerce_product_page_layout', array(
'default' => 'rightsidebar',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'buzzstore_layout_sanitize' //done
));
$wp_customize->add_control(new BuzzStore_Image_Radio_Control($wp_customize, 'buzzstore_woocommerce_product_page_layout', array(
'type' => 'radio',
'label' => esc_html__('WooCommerce Single Layout', 'buzzstore'),
'section' => 'buzzstore_woocommerce_product_page_settings',
'settings' => 'buzzstore_woocommerce_product_page_layout',
'choices' => array(
'leftsidebar' => $buzz_imagepath.'left-sidebar.png',
'rightsidebar' => $buzz_imagepath.'right-sidebar.png',
'nosidebar' => $buzz_imagepath.'no-sidebar.png',
)
)));
$wp_customize->add_setting('buzzstore_woocommerce_product_page_upsells_product_number', array(
'default' => 3,
'capability' => 'edit_theme_options',
'sanitize_callback' => 'buzzstore_sanitize_number' // done
));
$wp_customize->add_control('buzzstore_woocommerce_product_page_upsells_product_number', array(
'type' => 'number',
'label' => esc_html__('Number of upsell products', 'buzzstore'),
'section' => 'buzzstore_woocommerce_product_page_settings',
'settings' => 'buzzstore_woocommerce_product_page_upsells_product_number'
));
$wp_customize->add_setting('buzzstore_woocommerce_product_page_related_product_number', array(
'default' => 3,
'capability' => 'edit_theme_options',
'sanitize_callback' => 'buzzstore_sanitize_number' // done
));
$wp_customize->add_control('buzzstore_woocommerce_product_page_related_product_number', array(
'type' => 'number',
'label' => esc_html__('Number of related products', 'buzzstore'),
'section' => 'buzzstore_woocommerce_product_page_settings',
'settings' => 'buzzstore_woocommerce_product_page_related_product_number'
));
}
/**
* Start Footer Section here
*/
$wp_customize->add_panel('buzzstore_footer_settings', array(
'priority' => 115,
'title' => esc_html__('Footer', 'buzzstore'),
'capability' => 'edit_theme_options',
));
/**
* Footer Area Two Settings
*/
$wp_customize->add_section('buzzstore_footer_area_two_settings', array(
'priority' => 2,
'title' => esc_html__('Main Footer', 'buzzstore'),
'panel'=> 'buzzstore_footer_settings'
));
$wp_customize->add_setting('buzzstore_footer_area_two_enable_disable_section', array(
'default' => 'enable',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'buzzstore_radio_enable_sanitize', // done
));
$wp_customize->add_control('buzzstore_footer_area_two_enable_disable_section', array(
'type' => 'radio',
'label' => esc_html__('Enable/Disable Main Footer', 'buzzstore'),
'section' => 'buzzstore_footer_area_two_settings',
'setting' => 'buzzstore_footer_area_two_enable_disable_section',
'choices' => array(
'enable' => esc_html__('Enable', 'buzzstore'),
'disable' => esc_html__('Disable', 'buzzstore'),
)));
$wp_customize->add_setting('buzzstore_footer_area_two_background_color', array(
'default' => '#222222',
'priority' => 2,
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control('buzzstore_footer_area_two_background_color', array(
'type' => 'color',
'label' => esc_html__('Background Color','buzzstore'),
'section' => 'buzzstore_footer_area_two_settings',
));
/**
* Footer Area One Settings
*/
$wp_customize->add_section('buzzstore_footer_buttom_area_settings', array(
'priority' => 3,
'title' => esc_html__('Copyright', 'buzzstore'),
'panel'=> 'buzzstore_footer_settings'
));
$wp_customize->add_setting('buzzstore_footer_buttom_area_background_color', array(
'default' => '#333333',
'priority' => 2,
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_hex_color',
));
$wp_customize->add_control('buzzstore_footer_buttom_area_background_color', array(
'type' => 'color',
'label' => esc_html__('Background Color','buzzstore'),
'section' => 'buzzstore_footer_buttom_area_settings',
));
$wp_customize->add_setting('buzzstore_footer_buttom_copyright_setting', array(
'default' => '',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'buzzstore_text_sanitize' //done
));
$wp_customize->add_control('buzzstore_footer_buttom_copyright_setting', array(
'type' => 'textarea',
'label' => esc_html__('Copyright Text', 'buzzstore'),
'section' => 'buzzstore_footer_buttom_area_settings',
'settings' => 'buzzstore_footer_buttom_copyright_setting'
));
/**
* Web layout sanitization
*/
function buzzstore_web_layout_sanitize($input) {
$valid_keys = array(
'boxed' => esc_html__('Boxed', 'buzzstore'),
'fullwidth' => esc_html__('Full Width', 'buzzstore')
);
if ( array_key_exists( $input, $valid_keys ) ) {
return $input;
} else {
return '';
}
}
/**
* Text fields sanitization
*/
function buzzstore_text_sanitize( $input ) {
return wp_kses_post( force_balance_tags( $input ) );
}
/**
* Number fields sanitization
*/
function buzzstore_sanitize_number( $input ) {
$output = intval($input);
return $output;
}
/**
* Display Layout Sanitization
*/
function buzzstore_layout_sanitize($input) {
$buzz_imagepath = get_template_directory_uri() . '/assets/images/';
$valid_keys = array(
'leftsidebar' => $buzz_imagepath.'left-sidebar.png',
'rightsidebar' => $buzz_imagepath.'right-sidebar.png',
'nosidebar' => $buzz_imagepath.'no-sidebar.png',
);
if ( array_key_exists( $input, $valid_keys ) ) {
return $input;
} else {
return '';
}
}
/**
* Header Left Sidebar Options Sanitization
*/
function buzzstore_header_leftside_style_sanitize($input) {
$valid_keys = array(
'socialicon' => esc_html__('Social Icons','buzzstore'),
'topnavmenu' => esc_html__('Top Nav Menu','buzzstore'),
'quickinfo' => esc_html__('Quick Information','buzzstore')
);
if ( array_key_exists( $input, $valid_keys ) ) {
return $input;
} else {
return '';
}
}
/**
* Product Display Column Sanitization
*/
function buzzstore_product_per_page_sanitize($input) {
$valid_keys = array(
'2' => '2',
'3' => '3',
'4' => '4',
);
if ( array_key_exists( $input, $valid_keys ) ) {
return $input;
} else {
return '';
}
}
/**
* Display Related Products Sanitization
*/
function buzzstore_product_per_page_related_sanitize($input) {
$valid_keys = array(
'2' => '2',
'3' => '3',
'4' => '4',
'5' => '5',
);
if ( array_key_exists( $input, $valid_keys ) ) {
return $input;
} else {
return '';
}
}
/**
* Checkbox Sanitization
*/
function buzzstore_checkbox_sanitize($input) {
if ( $input == 1 ) {
return 1;
} else {
return 0;
}
}
/**
* Radio Button yes/no Sanitization
*/
function buzzstore_radio_sanitize($input) {
$valid_keys = array(
'yes'=>esc_html__('Yes', 'buzzstore'),
'no'=>esc_html__('No', 'buzzstore')
);
if ( array_key_exists( $input, $valid_keys ) ) {
return $input;
} else {
return '';
}
}
/**
* Radio Button Enable/Disable Sanitization
*/
function buzzstore_weblayout_sanitize($input) {
$valid_keys = array(
'boxed' => esc_html__('Boxed Layout', 'buzzstore'),
'fullwidth' => esc_html__('Full Width Layout', 'buzzstore')
);
if ( array_key_exists( $input, $valid_keys ) ) {
return $input;
} else {
return '';
}
}
/**
* Single Product tab display style Sanitization
*/
function buzzstore_product_page_tab_sanitize($input) {
$valid_keys = array(
'normaltabs' => 'Normal Tabs',
'verticaltabs' => 'Vertical Tabs',
);
if ( array_key_exists( $input, $valid_keys ) ) {
return $input;
} else {
return '';
}
}
/**
* Display Related Product Style Types Sanitization
*/
function buzzstore_page_related_product_sanitize($input) {
$valid_keys = array(
'none' => 'none',
'slider' => 'Slider',
'grid' => 'Grid'
);
if ( array_key_exists( $input, $valid_keys ) ) {
return $input;
} else {
return '';
}
}
/**
* Enable/Disable Sanitization
*/
function buzzstore_radio_enable_sanitize($input) {
$valid_keys = array(
'enable' => esc_html__('Enable', 'buzzstore'),
'disable' => esc_html__('Disable', 'buzzstore'),
);
if ( array_key_exists( $input, $valid_keys ) ) {
return $input;
} else {
return '';
}
}
/**
* Top LeftSide Active CallBack Function Process
*/
if ( ! function_exists( 'buzzstore_quickinfo_email_address' ) ) {
function buzzstore_quickinfo_email_address(){
if(esc_attr(get_theme_mod('buzzstore_header_leftside_options','quickinfo')) =='quickinfo'){
return true;
}else{
return false;
}
}
}
if ( ! function_exists( 'buzzstore_social_icon_callback' ) ) {
function buzzstore_social_icon_callback(){
if(esc_attr(get_theme_mod('buzzstore_header_leftside_options')) == 'socialicon'){
return true;
}else{
return false;
}
}
}
}
add_action( 'customize_register', 'buzzstore_customize_register' );
/**
* Binds JS handlers to make Theme Customizer preview reload changes asynchronously.
*/
function buzzstore_customize_preview_js() {
wp_enqueue_script( 'buzzstore_customizer', get_template_directory_uri() . '/assets/js/customizer.js', array( 'customize-preview' ), '20130508', true );
}
add_action( 'customize_preview_init', 'buzzstore_customize_preview_js' );
add_action('customize_controls_enqueue_scripts', 'buzzstore_customize_preview_js');