File: /home/httpd/vhosts/rajlaw.com.tw/httpdocs/wp-content/themes/pool-services-lite/inc/customizer.php
<?php
/**
* Pool Services Lite Theme Customizer
*
* @package Pool Services Lite
*/
/**
* Add postMessage support for site title and description for the Theme Customizer.
*
* @param WP_Customize_Manager $wp_customize Theme Customizer object.
*/
function pool_services_lite_custom_controls() {
load_template( trailingslashit( get_template_directory() ) . '/inc/custom-controls.php' );
}
add_action( 'customize_register', 'pool_services_lite_custom_controls' );
function pool_services_lite_customize_register( $wp_customize ) {
load_template( trailingslashit( get_template_directory() ) . '/inc/icon-picker.php' );
$wp_customize->get_setting( 'blogname' )->transport = 'postMessage';
$wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage';
//Selective Refresh
$wp_customize->selective_refresh->add_partial( 'blogname', array(
'selector' => '.logo .site-title a',
'render_callback' => 'pool_services_lite_customize_partial_blogname',
));
$wp_customize->selective_refresh->add_partial( 'blogdescription', array(
'selector' => 'p.site-description',
'render_callback' => 'pool_services_lite_customize_partial_blogdescription',
));
//add home page setting pannel
$PoolServicesLiteParentPanel = new Pool_Services_Lite_WP_Customize_Panel( $wp_customize, 'pool_services_lite_panel_id', array(
'capability' => 'edit_theme_options',
'theme_supports' => '',
'title' => esc_html__( 'VW Settings', 'pool-services-lite' ),
'priority' => 10,
));
$wp_customize->add_panel( $PoolServicesLiteParentPanel );
$HomePageParentPanel = new Pool_Services_Lite_WP_Customize_Panel( $wp_customize, 'pool_services_lite_homepage_panel', array(
'title' => __( 'Homepage Settings', 'pool-services-lite' ),
'panel' => 'pool_services_lite_panel_id',
));
$wp_customize->add_panel( $HomePageParentPanel );
//Top Bar
$wp_customize->add_section( 'pool_services_lite_topbar', array(
'title' => __( 'Top Bar Settings', 'pool-services-lite' ),
'panel' => 'pool_services_lite_homepage_panel'
) );
$wp_customize->add_setting( 'pool_services_lite_show_hide_topbar',array(
'default' => 0,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
));
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_show_hide_topbar',array(
'label' => esc_html__( 'Show / Hide Topbar','pool-services-lite' ),
'section' => 'pool_services_lite_topbar'
)));
// Header Background color
$wp_customize->add_setting('pool_services_lite_header_background_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color',
));
$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'pool_services_lite_header_background_color', array(
'label' => __('Header Background Color', 'pool-services-lite'),
'section' => 'pool_services_lite_topbar',
)));
$wp_customize->add_setting('pool_services_lite_header_img_position',array(
'default' => 'center top',
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_sanitize_choices'
));
$wp_customize->add_control('pool_services_lite_header_img_position',array(
'type' => 'select',
'label' => __('Header Image Position','pool-services-lite'),
'section' => 'pool_services_lite_topbar',
'choices' => array(
'left top' => esc_html__( 'Top Left', 'pool-services-lite' ),
'center top' => esc_html__( 'Top', 'pool-services-lite' ),
'right top' => esc_html__( 'Top Right', 'pool-services-lite' ),
'left center' => esc_html__( 'Left', 'pool-services-lite' ),
'center center' => esc_html__( 'Center', 'pool-services-lite' ),
'right center' => esc_html__( 'Right', 'pool-services-lite' ),
'left bottom' => esc_html__( 'Bottom Left', 'pool-services-lite' ),
'center bottom' => esc_html__( 'Bottom', 'pool-services-lite' ),
'right bottom' => esc_html__( 'Bottom Right', 'pool-services-lite' ),
),
));
//Sticky Header
$wp_customize->add_setting( 'pool_services_lite_sticky_header',array(
'default' => 0,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
) );
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_sticky_header',array(
'label' => esc_html__( 'Show / Hide Sticky Header','pool-services-lite' ),
'section' => 'pool_services_lite_topbar'
)));
$wp_customize->add_setting('pool_services_lite_sticky_header_padding',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_sticky_header_padding',array(
'label' => __('Sticky Header Padding','pool-services-lite'),
'description' => __('Enter a value in pixels. Example:20px','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '10px', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_topbar',
'type'=> 'text'
));
$wp_customize->add_setting( 'pool_services_lite_search_enable',array(
'default' => 1,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
));
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_search_enable',array(
'label' => esc_html__( 'Show / Hide Search','pool-services-lite' ),
'section' => 'pool_services_lite_topbar'
)));
$wp_customize->add_setting('pool_services_lite_search_icon',array(
'default' => 'fas fa-search',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new Pool_Services_Lite_Fontawesome_Icon_Chooser(
$wp_customize,'pool_services_lite_search_icon',array(
'label' => __('Add Search Icon','pool-services-lite'),
'transport' => 'refresh',
'section' => 'pool_services_lite_topbar',
'setting' => 'pool_services_lite_search_icon',
'type' => 'icon'
)));
$wp_customize->add_setting('pool_services_lite_search_close_icon',array(
'default' => 'fa fa-window-close',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new Pool_Services_Lite_Fontawesome_Icon_Chooser(
$wp_customize,'pool_services_lite_search_close_icon',array(
'label' => __('Add Search Close Icon','pool-services-lite'),
'transport' => 'refresh',
'section' => 'pool_services_lite_topbar',
'setting' => 'pool_services_lite_search_close_icon',
'type' => 'icon'
)));
$wp_customize->add_setting('pool_services_lite_search_font_size',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_search_font_size',array(
'label' => __('Search Font Size','pool-services-lite'),
'description' => __('Enter a value in pixels. Example:20px','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '10px', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_topbar',
'type'=> 'text'
));
$wp_customize->add_setting( 'pool_services_lite_cart_enable',array(
'default' => 1,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
));
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_cart_enable',array(
'label' => esc_html__( 'Show / Hide Cart','pool-services-lite' ),
'section' => 'pool_services_lite_topbar'
)));
//Selective Refresh
$wp_customize->selective_refresh->add_partial('pool_services_lite_location', array(
'selector' => '.top-bar p',
'render_callback' => 'pool_services_lite_customize_partial_pool_services_lite_location',
));
$wp_customize->add_setting('pool_services_lite_location_icon',array(
'default' => 'fas fa-map-marker-alt',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new Pool_Services_Lite_Fontawesome_Icon_Chooser(
$wp_customize,'pool_services_lite_location_icon',array(
'label' => __('Add Location Icon','pool-services-lite'),
'transport' => 'refresh',
'section' => 'pool_services_lite_topbar',
'setting' => 'pool_services_lite_location_icon',
'type' => 'icon'
)));
$wp_customize->add_setting('pool_services_lite_location',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_location',array(
'label' => __('Add Location','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '123 lorem ipsum is a dummy text, USA', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_topbar',
'type'=> 'text'
));
//Selective Refresh
$wp_customize->selective_refresh->add_partial('pool_services_lite_phone_text', array(
'selector' => '.info-ctr h6',
'render_callback' => 'pool_services_lite_customize_partial_pool_services_lite_phone_text',
));
$wp_customize->add_setting('pool_services_lite_phone_no_icon',array(
'default' => 'fas fa-phone-volume',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new Pool_Services_Lite_Fontawesome_Icon_Chooser(
$wp_customize,'pool_services_lite_phone_no_icon',array(
'label' => __('Add Phone Icon','pool-services-lite'),
'transport' => 'refresh',
'section' => 'pool_services_lite_topbar',
'setting' => 'pool_services_lite_phone_no_icon',
'type' => 'icon'
)));
$wp_customize->add_setting('pool_services_lite_phone_text',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_phone_text',array(
'label' => __('Add Phone Text','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( 'Please Make a Call', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_topbar',
'type'=> 'text'
));
$wp_customize->add_setting('pool_services_lite_phone_number',array(
'default'=> '',
'sanitize_callback' => 'pool_services_lite_sanitize_phone_number'
));
$wp_customize->add_control('pool_services_lite_phone_number',array(
'label' => __('Add Phone Number','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '+00 1234 567 890', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_topbar',
'type'=> 'text'
));
$wp_customize->add_setting('pool_services_lite_email_address_icon',array(
'default' => 'fas fa-envelope-open',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new Pool_Services_Lite_Fontawesome_Icon_Chooser(
$wp_customize,'pool_services_lite_email_address_icon',array(
'label' => __('Add Email Icon','pool-services-lite'),
'transport' => 'refresh',
'section' => 'pool_services_lite_topbar',
'setting' => 'pool_services_lite_email_address_icon',
'type' => 'icon'
)));
$wp_customize->add_setting('pool_services_lite_email_text',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_email_text',array(
'label' => __('Add Email text','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( 'Drop us an Email', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_topbar',
'type'=> 'text'
));
$wp_customize->add_setting('pool_services_lite_email_address',array(
'default'=> '',
'sanitize_callback' => 'sanitize_email'
));
$wp_customize->add_control('pool_services_lite_email_address',array(
'label' => __('Add Email Address','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( 'example@gmail.com', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_topbar',
'type'=> 'text'
));
$wp_customize->add_setting('pool_services_lite_cart_icon',array(
'default' => 'fas fa-shopping-basket',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new Pool_Services_Lite_Fontawesome_Icon_Chooser(
$wp_customize,'pool_services_lite_cart_icon',array(
'label' => __('Add Cart Icon','pool-services-lite'),
'transport' => 'refresh',
'section' => 'pool_services_lite_topbar',
'setting' => 'pool_services_lite_cart_icon',
'type' => 'icon'
)));
//Menus Settings
$wp_customize->add_section( 'pool_services_lite_menu_section' , array(
'title' => __( 'Menus Settings', 'pool-services-lite' ),
'panel' => 'pool_services_lite_homepage_panel'
) );
$wp_customize->add_setting('pool_services_lite_navigation_menu_font_size',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_navigation_menu_font_size',array(
'label' => __('Menus Font Size','pool-services-lite'),
'description' => __('Enter a value in pixels. Example:20px','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '10px', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_menu_section',
'type'=> 'text'
));
$wp_customize->add_setting('pool_services_lite_navigation_menu_font_weight',array(
'default' => 600,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_sanitize_choices'
));
$wp_customize->add_control('pool_services_lite_navigation_menu_font_weight',array(
'type' => 'select',
'label' => __('Menus Font Weight','pool-services-lite'),
'section' => 'pool_services_lite_menu_section',
'choices' => array(
'100' => __('100','pool-services-lite'),
'200' => __('200','pool-services-lite'),
'300' => __('300','pool-services-lite'),
'400' => __('400','pool-services-lite'),
'500' => __('500','pool-services-lite'),
'600' => __('600','pool-services-lite'),
'700' => __('700','pool-services-lite'),
'800' => __('800','pool-services-lite'),
'900' => __('900','pool-services-lite'),
),
) );
// text trasform
$wp_customize->add_setting('pool_services_lite_menu_text_transform',array(
'default'=> 'Capitalize',
'sanitize_callback' => 'pool_services_lite_sanitize_choices'
));
$wp_customize->add_control('pool_services_lite_menu_text_transform',array(
'type' => 'radio',
'label' => __('Menus Text Transform','pool-services-lite'),
'choices' => array(
'Uppercase' => __('Uppercase','pool-services-lite'),
'Capitalize' => __('Capitalize','pool-services-lite'),
'Lowercase' => __('Lowercase','pool-services-lite'),
),
'section'=> 'pool_services_lite_menu_section',
));
$wp_customize->add_setting('pool_services_lite_menus_item_style',array(
'default' => '',
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_sanitize_choices'
));
$wp_customize->add_control('pool_services_lite_menus_item_style',array(
'type' => 'select',
'section' => 'pool_services_lite_menu_section',
'label' => __('Menu Item Hover Style','pool-services-lite'),
'choices' => array(
'None' => __('None','pool-services-lite'),
'Zoom In' => __('Zoom In','pool-services-lite'),
),
) );
$wp_customize->add_setting('pool_services_lite_header_menus_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color',
));
$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'pool_services_lite_header_menus_color', array(
'label' => __('Menus Color', 'pool-services-lite'),
'section' => 'pool_services_lite_menu_section',
)));
$wp_customize->add_setting('pool_services_lite_header_menus_hover_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color',
));
$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'pool_services_lite_header_menus_hover_color', array(
'label' => __('Menus Hover Color', 'pool-services-lite'),
'section' => 'pool_services_lite_menu_section',
)));
$wp_customize->add_setting('pool_services_lite_header_submenus_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color',
));
$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'pool_services_lite_header_submenus_color', array(
'label' => __('Sub Menus Color', 'pool-services-lite'),
'section' => 'pool_services_lite_menu_section',
)));
$wp_customize->add_setting('pool_services_lite_header_submenus_hover_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color',
));
$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'pool_services_lite_header_submenus_hover_color', array(
'label' => __('Sub Menus Hover Color', 'pool-services-lite'),
'section' => 'pool_services_lite_menu_section',
)));
//Social links
$wp_customize->add_section(
'pool_services_lite_social_links', array(
'title' => __('Social Links', 'pool-services-lite'),
'priority' => null,
'panel' => 'pool_services_lite_homepage_panel'
));
$wp_customize->add_setting('pool_services_lite_social_icons',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_social_icons',array(
'label' => __('Steps to setup social icons','pool-services-lite'),
'description' => __('<p>1. Go to Dashboard >> Appearance >> Widgets</p>
<p>2. Add Vw Social Icon Widget in Social Media.</p>
<p>3. Add social icons url and save.</p>','pool-services-lite'),
'section'=> 'pool_services_lite_social_links',
'type'=> 'hidden'
));
$wp_customize->add_setting('pool_services_lite_social_icon_btn',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_social_icon_btn',array(
'description' => "<a target='_blank' href='". admin_url('widgets.php') ." '>Setup Social Icons</a>",
'section'=> 'pool_services_lite_social_links',
'type'=> 'hidden'
));
//Slider
$wp_customize->add_section( 'pool_services_lite_slidersettings' , array(
'title' => __( 'Slider Settings', 'pool-services-lite' ),
'description' => __('Free theme has 3 slides options, For unlimited slides and more options <a class="go-pro-btn" target="blank" href="https://www.vwthemes.com/products/swimming-pool-wordpress-theme">GET PRO</a>','pool-services-lite'),
'panel' => 'pool_services_lite_homepage_panel'
) );
$wp_customize->add_setting( 'pool_services_lite_slider_arrows',array(
'default' => 0,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
));
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_slider_arrows',array(
'label' => esc_html__( 'Show / Hide Slider','pool-services-lite' ),
'section' => 'pool_services_lite_slidersettings'
)));
$wp_customize->add_setting('pool_services_lite_slider_type',array(
'default' => 'Default slider',
'sanitize_callback' => 'pool_services_lite_sanitize_choices'
) );
$wp_customize->add_control('pool_services_lite_slider_type', array(
'type' => 'select',
'label' => __('Slider Type','pool-services-lite'),
'section' => 'pool_services_lite_slidersettings',
'choices' => array(
'Default slider' => __('Default slider','pool-services-lite'),
'Advance slider' => __('Advance slider','pool-services-lite'),
),
));
$wp_customize->add_setting('pool_services_lite_advance_slider_shortcode',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_advance_slider_shortcode',array(
'label' => __('Add Slider Shortcode','pool-services-lite'),
'section'=> 'pool_services_lite_slidersettings',
'type'=> 'text',
'active_callback' => 'pool_services_lite_advance_slider'
));
//Selective Refresh
$wp_customize->selective_refresh->add_partial('pool_services_lite_slider_arrows',array(
'selector' => '#slider .inner_carousel h1',
'render_callback' => 'pool_services_lite_customize_partial_pool_services_lite_slider_arrows',
));
for ( $count = 1; $count <= 3; $count++ ) {
$wp_customize->add_setting( 'pool_services_lite_slider_page' . $count, array(
'default' => '',
'sanitize_callback' => 'pool_services_lite_sanitize_dropdown_pages'
) );
$wp_customize->add_control( 'pool_services_lite_slider_page' . $count, array(
'label' => __( 'Select Slider Page', 'pool-services-lite' ),
'description' => __('Slider image size (1600 x 800)','pool-services-lite'),
'section' => 'pool_services_lite_slidersettings',
'type' => 'dropdown-pages',
'active_callback' => 'pool_services_lite_default_slider'
) );
}
$wp_customize->add_setting('pool_services_lite_slider_button_text',array(
'default'=> 'Read More',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_slider_button_text',array(
'label' => __('Add Slider Button Text','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( 'Read More', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_slidersettings',
'type'=> 'text',
'active_callback' => 'pool_services_lite_default_slider'
));
$wp_customize->add_setting('pool_services_lite_topbar_btn_link',array(
'default'=> '',
'sanitize_callback' => 'esc_url_raw'
));
$wp_customize->add_control('pool_services_lite_topbar_btn_link',array(
'label' => esc_html__('Add Button Link','pool-services-lite'),
'input_attrs' => array(
'placeholder' => esc_html__( 'www.example-info.com', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_slidersettings',
'type'=> 'url'
));
//content layout
$wp_customize->add_setting('pool_services_lite_slider_content_option',array(
'default' => 'Center',
'sanitize_callback' => 'pool_services_lite_sanitize_choices'
));
$wp_customize->add_control(new Pool_Services_Lite_Image_Radio_Control($wp_customize, 'pool_services_lite_slider_content_option', array(
'type' => 'select',
'label' => __('Slider Content Layouts','pool-services-lite'),
'section' => 'pool_services_lite_slidersettings',
'choices' => array(
'Left' => esc_url(get_template_directory_uri()).'/assets/images/slider-content1.png',
'Center' => esc_url(get_template_directory_uri()).'/assets/images/slider-content2.png',
'Right' => esc_url(get_template_directory_uri()).'/assets/images/slider-content3.png',
),'active_callback' => 'pool_services_lite_default_slider'
)));
//Slider content padding
$wp_customize->add_setting('pool_services_lite_slider_content_padding_top_bottom',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_slider_content_padding_top_bottom',array(
'label' => __('Slider Content Padding Top Bottom','pool-services-lite'),
'description' => __('Enter a value in %. Example:20%','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '50%', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_slidersettings',
'type'=> 'text',
'active_callback' => 'pool_services_lite_default_slider'
));
$wp_customize->add_setting('pool_services_lite_slider_content_padding_left_right',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_slider_content_padding_left_right',array(
'label' => __('Slider Content Padding Left Right','pool-services-lite'),
'description' => __('Enter a value in %. Example:20%','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '50%', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_slidersettings',
'type'=> 'text',
'active_callback' => 'pool_services_lite_default_slider'
));
//Slider excerpt
$wp_customize->add_setting( 'pool_services_lite_slider_excerpt_number', array(
'default' => 20,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_sanitize_number_range'
) );
$wp_customize->add_control( 'pool_services_lite_slider_excerpt_number', array(
'label' => esc_html__( 'Slider Excerpt length','pool-services-lite' ),
'section' => 'pool_services_lite_slidersettings',
'type' => 'range',
'settings' => 'pool_services_lite_slider_excerpt_number',
'input_attrs' => array(
'step' => 2,
'min' => 0,
'max' => 50,
),'active_callback' => 'pool_services_lite_default_slider'
) );
//Opacity
$wp_customize->add_setting('pool_services_lite_slider_opacity_color',array(
'default' => 0.4,
'sanitize_callback' => 'pool_services_lite_sanitize_choices'
));
$wp_customize->add_control( 'pool_services_lite_slider_opacity_color', array(
'label' => esc_html__( 'Slider Image Opacity','pool-services-lite' ),
'section' => 'pool_services_lite_slidersettings',
'type' => 'select',
'settings' => 'pool_services_lite_slider_opacity_color',
'choices' => array(
'0' => esc_attr( __('0','pool-services-lite')),
'0.1' => esc_attr( __('0.1','pool-services-lite')),
'0.2' => esc_attr( __('0.2','pool-services-lite')),
'0.3' => esc_attr( __('0.3','pool-services-lite')),
'0.4' => esc_attr( __('0.4','pool-services-lite')),
'0.5' => esc_attr( __('0.5','pool-services-lite')),
'0.6' => esc_attr( __('0.6','pool-services-lite')),
'0.7' => esc_attr( __('0.7','pool-services-lite')),
'0.8' => esc_attr( __('0.8','pool-services-lite')),
'0.9' => esc_attr( __('0.9','pool-services-lite'))
),'active_callback' => 'pool_services_lite_default_slider'
));
$wp_customize->add_setting( 'pool_services_lite_slider_image_overlay',array(
'default' => 1,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
));
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_slider_image_overlay',array(
'label' => esc_html__( 'Show / Hide Slider Image Overlay','pool-services-lite' ),
'section' => 'pool_services_lite_slidersettings',
'active_callback' => 'pool_services_lite_default_slider'
)));
$wp_customize->add_setting('pool_services_lite_slider_image_overlay_color', array(
'default' => '#1f2122',
'sanitize_callback' => 'sanitize_hex_color',
));
$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'pool_services_lite_slider_image_overlay_color', array(
'label' => __('Slider Image Overlay Color', 'pool-services-lite'),
'section' => 'pool_services_lite_slidersettings',
'active_callback' => 'pool_services_lite_default_slider'
)));
//Slider height
$wp_customize->add_setting('pool_services_lite_slider_height',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_slider_height',array(
'label' => __('Slider Height','pool-services-lite'),
'description' => __('Specify the slider height (px).','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '500px', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_slidersettings',
'type'=> 'text',
'active_callback' => 'pool_services_lite_default_slider'
));
$wp_customize->add_setting( 'pool_services_lite_slider_speed', array(
'default' => 4000,
'sanitize_callback' => 'pool_services_lite_sanitize_float'
) );
$wp_customize->add_control( 'pool_services_lite_slider_speed', array(
'label' => esc_html__('Slider Transition Speed','pool-services-lite'),
'section' => 'pool_services_lite_slidersettings',
'type' => 'number',
'active_callback' => 'pool_services_lite_default_slider'
) );
//Features Section
$wp_customize->add_section('pool_services_lite_features', array(
'title' => __('Features Section', 'pool-services-lite'),
'description' => __('<p class="premium-opt">Premium Theme Features</p>','pool-services-lite'),
'priority' => null,
'panel' => 'pool_services_lite_homepage_panel',
));
$wp_customize->add_setting('pool_services_lite_features_text',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_features_text',array(
'description' => __('<p>1. More options for features section.</p>
<p>2. Unlimited images options.</p>
<p>3. Color options for features section.</p>','pool-services-lite'),
'section'=> 'pool_services_lite_features',
'type'=> 'hidden'
));
$wp_customize->add_setting('pool_services_lite_features_btn',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_features_btn',array(
'description' => "<a class='go-pro' target='_blank' href='https://www.vwthemes.com/products/swimming-pool-wordpress-theme'>More Info</a>",
'section'=> 'pool_services_lite_features',
'type'=> 'hidden'
));
//About Section
$wp_customize->add_section( 'pool_services_lite_about_section' , array(
'title' => __( 'About Settings', 'pool-services-lite' ),
'description' => __('For more options of the about section <a class="go-pro-btn" target="blank" href="https://www.vwthemes.com/products/swimming-pool-wordpress-theme">GET PRO</a>','pool-services-lite'),
'priority' => null,
'panel' => 'pool_services_lite_homepage_panel'
) );
//Selective Refresh
$wp_customize->selective_refresh->add_partial( 'pool_services_lite_section_title', array(
'selector' => '#about-section h2',
'render_callback' => 'pool_services_lite_customize_partial_pool_services_lite_section_title',
));
$wp_customize->add_setting('pool_services_lite_section_title',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_section_title',array(
'label' => __('Add Section Title','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( 'Welcome to the Pool Services Lite', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_about_section',
'type'=> 'text'
));
$wp_customize->add_setting( 'pool_services_lite_about', array(
'default' => '',
'sanitize_callback' => 'pool_services_lite_sanitize_dropdown_pages'
) );
$wp_customize->add_control( 'pool_services_lite_about', array(
'label' => __( 'Select About Page', 'pool-services-lite' ),
'description' => __('About image size (640 x 480)','pool-services-lite'),
'section' => 'pool_services_lite_about_section',
'type' => 'dropdown-pages'
) );
//About excerpt
$wp_customize->add_setting( 'pool_services_lite_about_excerpt_number', array(
'default' => 20,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_sanitize_number_range'
) );
$wp_customize->add_control( 'pool_services_lite_about_excerpt_number', array(
'label' => esc_html__( 'About Excerpt length','pool-services-lite' ),
'section' => 'pool_services_lite_about_section',
'type' => 'range',
'settings' => 'pool_services_lite_about_excerpt_number',
'input_attrs' => array(
'step' => 2,
'min' => 0,
'max' => 50,
),
) );
$wp_customize->add_setting('pool_services_lite_about_button_text',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_about_button_text',array(
'label' => __('Add About Button Text','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( 'Discover More', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_about_section',
'type'=> 'text'
));
//Services Section
$wp_customize->add_section('pool_services_lite_services', array(
'title' => __('Services Section', 'pool-services-lite'),
'description' => __('<p class="premium-opt">Premium Theme Features</p>','pool-services-lite'),
'priority' => null,
'panel' => 'pool_services_lite_homepage_panel',
));
$wp_customize->add_setting('pool_services_lite_services_text',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_services_text',array(
'description' => __('<p>1. More options for services section.</p>
<p>2. Unlimited images options.</p>
<p>3. Color options for services section.</p>','pool-services-lite'),
'section'=> 'pool_services_lite_services',
'type'=> 'hidden'
));
$wp_customize->add_setting('pool_services_lite_services_btn',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_services_btn',array(
'description' => "<a class='go-pro' target='_blank' href='https://www.vwthemes.com/products/swimming-pool-wordpress-theme'>More Info</a>",
'section'=> 'pool_services_lite_services',
'type'=> 'hidden'
));
//Choose Us Section
$wp_customize->add_section('pool_services_lite_choose_us', array(
'title' => __('Choose Us Section', 'pool-services-lite'),
'description' => __('<p class="premium-opt">Premium Theme Features</p>','pool-services-lite'),
'priority' => null,
'panel' => 'pool_services_lite_homepage_panel',
));
$wp_customize->add_setting('pool_services_lite_choose_us_text',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_choose_us_text',array(
'description' => __('<p>1. More options for choose us section.</p>
<p>2. Unlimited images options.</p>
<p>3. Color options for choose us section.</p>','pool-services-lite'),
'section'=> 'pool_services_lite_choose_us',
'type'=> 'hidden'
));
$wp_customize->add_setting('pool_services_lite_choose_us_btn',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_choose_us_btn',array(
'description' => "<a class='go-pro' target='_blank' href='https://www.vwthemes.com/products/swimming-pool-wordpress-theme'>More Info</a>",
'section'=> 'pool_services_lite_choose_us',
'type'=> 'hidden'
));
//Video Sec Section
$wp_customize->add_section('pool_services_lite_video_sec', array(
'title' => __('Video Sec Section', 'pool-services-lite'),
'description' => __('<p class="premium-opt">Premium Theme Features</p>','pool-services-lite'),
'priority' => null,
'panel' => 'pool_services_lite_homepage_panel',
));
$wp_customize->add_setting('pool_services_lite_video_sec_text',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_video_sec_text',array(
'description' => __('<p>1. More options for video sec section.</p>
<p>2. Unlimited images options.</p>
<p>3. Color options for video sec section.</p>','pool-services-lite'),
'section'=> 'pool_services_lite_video_sec',
'type'=> 'hidden'
));
$wp_customize->add_setting('pool_services_lite_video_sec_btn',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_video_sec_btn',array(
'description' => "<a class='go-pro' target='_blank' href='https://www.vwthemes.com/products/swimming-pool-wordpress-theme'>More Info</a>",
'section'=> 'pool_services_lite_video_sec',
'type'=> 'hidden'
));
//Projects Section
$wp_customize->add_section('pool_services_lite_projects', array(
'title' => __('Projects Section', 'pool-services-lite'),
'description' => __('<p class="premium-opt">Premium Theme Features</p>','pool-services-lite'),
'priority' => null,
'panel' => 'pool_services_lite_homepage_panel',
));
$wp_customize->add_setting('pool_services_lite_projects_text',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_projects_text',array(
'description' => __('<p>1. More options for projects section.</p>
<p>2. Unlimited images options.</p>
<p>3. Color options for projects section.</p>','pool-services-lite'),
'section'=> 'pool_services_lite_projects',
'type'=> 'hidden'
));
$wp_customize->add_setting('pool_services_lite_projects_btn',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_projects_btn',array(
'description' => "<a class='go-pro' target='_blank' href='https://www.vwthemes.com/products/swimming-pool-wordpress-theme'>More Info</a>",
'section'=> 'pool_services_lite_projects',
'type'=> 'hidden'
));
//How We Work Section
$wp_customize->add_section('pool_services_lite_how_we_work', array(
'title' => __('How We Work Section', 'pool-services-lite'),
'description' => __('<p class="premium-opt">Premium Theme Features</p>','pool-services-lite'),
'priority' => null,
'panel' => 'pool_services_lite_homepage_panel',
));
$wp_customize->add_setting('pool_services_lite_how_we_work_text',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_how_we_work_text',array(
'description' => __('<p>1. More options for how we work section.</p>
<p>2. Unlimited images options.</p>
<p>3. Color options for how we work section.</p>','pool-services-lite'),
'section'=> 'pool_services_lite_how_we_work',
'type'=> 'hidden'
));
$wp_customize->add_setting('pool_services_lite_how_we_work_btn',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_how_we_work_btn',array(
'description' => "<a class='go-pro' target='_blank' href='https://www.vwthemes.com/products/swimming-pool-wordpress-theme'>More Info</a>",
'section'=> 'pool_services_lite_how_we_work',
'type'=> 'hidden'
));
//Products Section
$wp_customize->add_section('pool_services_lite_products', array(
'title' => __('Products Section', 'pool-services-lite'),
'description' => __('<p class="premium-opt">Premium Theme Features</p>','pool-services-lite'),
'priority' => null,
'panel' => 'pool_services_lite_homepage_panel',
));
$wp_customize->add_setting('pool_services_lite_products_text',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_products_text',array(
'description' => __('<p>1. More options for products section.</p>
<p>2. Unlimited images options.</p>
<p>3. Color options for products section.</p>','pool-services-lite'),
'section'=> 'pool_services_lite_products',
'type'=> 'hidden'
));
$wp_customize->add_setting('pool_services_lite_products_btn',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_products_btn',array(
'description' => "<a class='go-pro' target='_blank' href='https://www.vwthemes.com/products/swimming-pool-wordpress-theme'>More Info</a>",
'section'=> 'pool_services_lite_products',
'type'=> 'hidden'
));
//team Section
$wp_customize->add_section('pool_services_lite_team', array(
'title' => __('Team Section', 'pool-services-lite'),
'description' => __('<p class="premium-opt">Premium Theme Features</p>','pool-services-lite'),
'priority' => null,
'panel' => 'pool_services_lite_homepage_panel',
));
$wp_customize->add_setting('pool_services_lite_team_text',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_team_text',array(
'description' => __('<p>1. More options for team section.</p>
<p>2. Unlimited images options.</p>
<p>3. Color options for team section.</p>','pool-services-lite'),
'section'=> 'pool_services_lite_team',
'type'=> 'hidden'
));
$wp_customize->add_setting('pool_services_lite_team_btn',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_team_btn',array(
'description' => "<a class='go-pro' target='_blank' href='https://www.vwthemes.com/products/swimming-pool-wordpress-theme'>More Info</a>",
'section'=> 'pool_services_lite_team',
'type'=> 'hidden'
));
//Testimonial Section
$wp_customize->add_section('pool_services_lite_testimonial', array(
'title' => __('Testimonial Section', 'pool-services-lite'),
'description' => __('<p class="premium-opt">Premium Theme Features</p>','pool-services-lite'),
'priority' => null,
'panel' => 'pool_services_lite_homepage_panel',
));
$wp_customize->add_setting('pool_services_lite_testimonial_text',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_testimonial_text',array(
'description' => __('<p>1. More options for testimonial section.</p>
<p>2. Unlimited images options.</p>
<p>3. Color options for testimonial section.</p>','pool-services-lite'),
'section'=> 'pool_services_lite_testimonial',
'type'=> 'hidden'
));
$wp_customize->add_setting('pool_services_lite_testimonial_btn',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_testimonial_btn',array(
'description' => "<a class='go-pro' target='_blank' href='https://www.vwthemes.com/products/swimming-pool-wordpress-theme'>More Info</a>",
'section'=> 'pool_services_lite_testimonial',
'type'=> 'hidden'
));
//Partners Section
$wp_customize->add_section('pool_services_lite_partners', array(
'title' => __('Partners Section', 'pool-services-lite'),
'description' => __('<p class="premium-opt">Premium Theme Features</p>','pool-services-lite'),
'priority' => null,
'panel' => 'pool_services_lite_homepage_panel',
));
$wp_customize->add_setting('pool_services_lite_partners_text',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_partners_text',array(
'description' => __('<p>1. More options for partners section.</p>
<p>2. Unlimited images options.</p>
<p>3. Color options for partners section.</p>','pool-services-lite'),
'section'=> 'pool_services_lite_partners',
'type'=> 'hidden'
));
$wp_customize->add_setting('pool_services_lite_partners_btn',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_partners_btn',array(
'description' => "<a class='go-pro' target='_blank' href='https://www.vwthemes.com/products/swimming-pool-wordpress-theme'>More Info</a>",
'section'=> 'pool_services_lite_partners',
'type'=> 'hidden'
));
//Latest News Section
$wp_customize->add_section('pool_services_lite_latest_news', array(
'title' => __('Latest News Section', 'pool-services-lite'),
'description' => __('<p class="premium-opt">Premium Theme Features</p>','pool-services-lite'),
'priority' => null,
'panel' => 'pool_services_lite_homepage_panel',
));
$wp_customize->add_setting('pool_services_lite_latest_news_text',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_latest_news_text',array(
'description' => __('<p>1. More options for latest news section.</p>
<p>2. Unlimited images options.</p>
<p>3. Color options for latest news section.</p>','pool-services-lite'),
'section'=> 'pool_services_lite_latest_news',
'type'=> 'hidden'
));
$wp_customize->add_setting('pool_services_lite_latest_news_btn',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_latest_news_btn',array(
'description' => "<a class='go-pro' target='_blank' href='https://www.vwthemes.com/products/swimming-pool-wordpress-theme'>More Info</a>",
'section'=> 'pool_services_lite_latest_news',
'type'=> 'hidden'
));
//Footer Text
$wp_customize->add_section('pool_services_lite_footer',array(
'title' => __('Footer Settings','pool-services-lite'),
'description' => __('For more options of the footer section <a class="go-pro-btn" target="blank" href="https://www.vwthemes.com/products/swimming-pool-wordpress-theme">GET PRO</a>','pool-services-lite'),
'panel' => 'pool_services_lite_homepage_panel',
));
$wp_customize->add_setting( 'pool_services_lite_footer_hide_show',array(
'default' => 1,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
));
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_footer_hide_show',array(
'label' => esc_html__( 'Show / Hide Footer','pool-services-lite' ),
'section' => 'pool_services_lite_footer'
)));
// font size
$wp_customize->add_setting('pool_services_lite_button_footer_font_size',array(
'default'=> 30,
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_button_footer_font_size',array(
'label' => __('Footer Heading Font Size','pool-services-lite'),
'type' => 'number',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
'section'=> 'pool_services_lite_footer',
));
$wp_customize->add_setting('pool_services_lite_button_footer_heading_letter_spacing',array(
'default'=> 1,
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_button_footer_heading_letter_spacing',array(
'label' => __('Heading Letter Spacing','pool-services-lite'),
'type' => 'number',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
'section'=> 'pool_services_lite_footer',
));
// text trasform
$wp_customize->add_setting('pool_services_lite_button_footer_text_transform',array(
'default'=> 'Capitalize',
'sanitize_callback' => 'pool_services_lite_sanitize_choices'
));
$wp_customize->add_control('pool_services_lite_button_footer_text_transform',array(
'type' => 'radio',
'label' => __('Heading Text Transform','pool-services-lite'),
'choices' => array(
'Uppercase' => __('Uppercase','pool-services-lite'),
'Capitalize' => __('Capitalize','pool-services-lite'),
'Lowercase' => __('Lowercase','pool-services-lite'),
),
'section'=> 'pool_services_lite_footer',
));
$wp_customize->add_setting('pool_services_lite_footer_heading_weight',array(
'default' => 600,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_sanitize_choices'
));
$wp_customize->add_control('pool_services_lite_footer_heading_weight',array(
'type' => 'select',
'label' => __('Heading Font Weight','pool-services-lite'),
'section' => 'pool_services_lite_footer',
'choices' => array(
'100' => __('100','pool-services-lite'),
'200' => __('200','pool-services-lite'),
'300' => __('300','pool-services-lite'),
'400' => __('400','pool-services-lite'),
'500' => __('500','pool-services-lite'),
'600' => __('600','pool-services-lite'),
'700' => __('700','pool-services-lite'),
'800' => __('800','pool-services-lite'),
'900' => __('900','pool-services-lite'),
),
) );
$wp_customize->add_setting('pool_services_lite_footer_template',array(
'default' => esc_html('pool_services_lite-footer-one'),
'sanitize_callback' => 'pool_services_lite_sanitize_choices'
));
$wp_customize->add_control('pool_services_lite_footer_template',array(
'label' => esc_html__('Footer style','pool-services-lite'),
'section' => 'pool_services_lite_footer',
'setting' => 'pool_services_lite_footer_template',
'type' => 'select',
'choices' => array(
'pool_services_lite-footer-one' => esc_html__('Style 1', 'pool-services-lite'),
'pool_services_lite-footer-two' => esc_html__('Style 2', 'pool-services-lite'),
'pool_services_lite-footer-three' => esc_html__('Style 3', 'pool-services-lite'),
'pool_services_lite-footer-four' => esc_html__('Style 4', 'pool-services-lite'),
'pool_services_lite-footer-five' => esc_html__('Style 5', 'pool-services-lite'),
)
));
$wp_customize->add_setting('pool_services_lite_footer_background_color', array(
'default' => '#1f2122',
'sanitize_callback' => 'sanitize_hex_color',
));
$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'pool_services_lite_footer_background_color', array(
'label' => __('Footer Background Color', 'pool-services-lite'),
'section' => 'pool_services_lite_footer',
)));
$wp_customize->add_setting('pool_services_lite_footer_background_image',array(
'default' => '',
'sanitize_callback' => 'esc_url_raw',
));
$wp_customize->add_control( new WP_Customize_Image_Control($wp_customize,'pool_services_lite_footer_background_image',array(
'label' => __('Footer Background Image','pool-services-lite'),
'section' => 'pool_services_lite_footer'
)));
$wp_customize->add_setting('pool_services_lite_footer_img_position',array(
'default' => 'center center',
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_sanitize_choices'
));
$wp_customize->add_control('pool_services_lite_footer_img_position',array(
'type' => 'select',
'label' => __('Footer Image Position','pool-services-lite'),
'section' => 'pool_services_lite_footer',
'choices' => array(
'left top' => esc_html__( 'Top Left', 'pool-services-lite' ),
'center top' => esc_html__( 'Top', 'pool-services-lite' ),
'right top' => esc_html__( 'Top Right', 'pool-services-lite' ),
'left center' => esc_html__( 'Left', 'pool-services-lite' ),
'center center' => esc_html__( 'Center', 'pool-services-lite' ),
'right center' => esc_html__( 'Right', 'pool-services-lite' ),
'left bottom' => esc_html__( 'Bottom Left', 'pool-services-lite' ),
'center bottom' => esc_html__( 'Bottom', 'pool-services-lite' ),
'right bottom' => esc_html__( 'Bottom Right', 'pool-services-lite' ),
),
));
// Footer
$wp_customize->add_setting('pool_services_lite_img_footer',array(
'default'=> 'scroll',
'sanitize_callback' => 'pool_services_lite_sanitize_choices'
));
$wp_customize->add_control('pool_services_lite_img_footer',array(
'type' => 'select',
'label' => __('Footer Background Attatchment','pool-services-lite'),
'choices' => array(
'fixed' => __('fixed','pool-services-lite'),
'scroll' => __('scroll','pool-services-lite'),
),
'section'=> 'pool_services_lite_footer',
));
$wp_customize->add_setting('pool_services_lite_footer_widgets_heading',array(
'default' => 'Left',
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_sanitize_choices'
));
$wp_customize->add_control('pool_services_lite_footer_widgets_heading',array(
'type' => 'select',
'label' => __('Footer Widget Heading','pool-services-lite'),
'section' => 'pool_services_lite_footer',
'choices' => array(
'Left' => __('Left','pool-services-lite'),
'Center' => __('Center','pool-services-lite'),
'Right' => __('Right','pool-services-lite')
),
) );
$wp_customize->add_setting('pool_services_lite_footer_widgets_content',array(
'default' => 'Left',
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_sanitize_choices'
));
$wp_customize->add_control('pool_services_lite_footer_widgets_content',array(
'type' => 'select',
'label' => __('Footer Widget Content','pool-services-lite'),
'section' => 'pool_services_lite_footer',
'choices' => array(
'Left' => __('Left','pool-services-lite'),
'Center' => __('Center','pool-services-lite'),
'Right' => __('Right','pool-services-lite')
),
) );
// footer padding
$wp_customize->add_setting('pool_services_lite_footer_padding',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_footer_padding',array(
'label' => __('Footer Top Bottom Padding','pool-services-lite'),
'description' => __('Enter a value in pixels. Example:20px','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '10px', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_footer',
'type'=> 'text'
));
// footer social icon
$wp_customize->add_setting( 'pool_services_lite_footer_icon',array(
'default' => false,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
) );
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_footer_icon',array(
'label' => esc_html__( 'Show / Hide Footer Social Icon','pool-services-lite' ),
'section' => 'pool_services_lite_footer'
)));
//Selective Refresh
$wp_customize->selective_refresh->add_partial('pool_services_lite_footer_text', array(
'selector' => '.copyright p',
'render_callback' => 'pool_services_lite_customize_partial_pool_services_lite_footer_text',
));
$wp_customize->add_setting( 'pool_services_lite_copyright_hide_show',array(
'default' => 1,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
));
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_copyright_hide_show',array(
'label' => esc_html__( 'Show / Hide Copyright','pool-services-lite' ),
'section' => 'pool_services_lite_footer'
)));
$wp_customize->add_setting('pool_services_lite_copyright_background_color', array(
'default' => '#36a0e2',
'sanitize_callback' => 'sanitize_hex_color',
));
$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'pool_services_lite_copyright_background_color', array(
'label' => __('Copyright Background Color', 'pool-services-lite'),
'section' => 'pool_services_lite_footer',
)));
$wp_customize->add_setting('pool_services_lite_footer_text',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_footer_text',array(
'label' => __('Copyright Text','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( 'Copyright 2019, .....', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_footer',
'type'=> 'text'
));
$wp_customize->add_setting('pool_services_lite_copyright_font_size',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_copyright_font_size',array(
'label' => __('Copyright Font Size','pool-services-lite'),
'description' => __('Enter a value in pixels. Example:20px','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '10px', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_footer',
'type'=> 'text'
));
$wp_customize->add_setting('pool_services_lite_copyright_padding_top_bottom',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_copyright_padding_top_bottom',array(
'label' => __('Copyright Padding Top Bottom','pool-services-lite'),
'description' => __('Enter a value in pixels. Example:20px','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '10px', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_footer',
'type'=> 'text'
));
$wp_customize->add_setting('pool_services_lite_copyright_alingment',array(
'default' => 'center',
'sanitize_callback' => 'pool_services_lite_sanitize_choices'
));
$wp_customize->add_control(new Pool_Services_Lite_Image_Radio_Control($wp_customize, 'pool_services_lite_copyright_alingment', array(
'type' => 'select',
'label' => __('Copyright Alignment','pool-services-lite'),
'section' => 'pool_services_lite_footer',
'settings' => 'pool_services_lite_copyright_alingment',
'choices' => array(
'left' => esc_url(get_template_directory_uri()).'/assets/images/copyright1.png',
'center' => esc_url(get_template_directory_uri()).'/assets/images/copyright2.png',
'right' => esc_url(get_template_directory_uri()).'/assets/images/copyright3.png'
))));
$wp_customize->add_setting( 'pool_services_lite_hide_show_scroll',array(
'default' => 1,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
));
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_hide_show_scroll',array(
'label' => esc_html__( 'Show / Hide Scroll To Top','pool-services-lite' ),
'section' => 'pool_services_lite_footer'
)));
//Selective Refresh
$wp_customize->selective_refresh->add_partial('pool_services_lite_scroll_top_icon', array(
'selector' => '.scrollup i',
'render_callback' => 'pool_services_lite_customize_partial_pool_services_lite_scroll_top_icon',
));
$wp_customize->add_setting('pool_services_lite_scroll_top_icon',array(
'default' => 'fas fa-long-arrow-alt-up',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new Pool_Services_Lite_Fontawesome_Icon_Chooser(
$wp_customize,'pool_services_lite_scroll_top_icon',array(
'label' => __('Add Scroll to Top Icon','pool-services-lite'),
'transport' => 'refresh',
'section' => 'pool_services_lite_footer',
'setting' => 'pool_services_lite_scroll_top_icon',
'type' => 'icon'
)));
$wp_customize->add_setting('pool_services_lite_scroll_to_top_font_size',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_scroll_to_top_font_size',array(
'label' => __('Icon Font Size','pool-services-lite'),
'description' => __('Enter a value in pixels. Example:20px','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '10px', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_footer',
'type'=> 'text'
));
$wp_customize->add_setting('pool_services_lite_scroll_to_top_padding',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_scroll_to_top_padding',array(
'label' => __('Icon Top Bottom Padding','pool-services-lite'),
'description' => __('Enter a value in pixels. Example:20px','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '10px', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_footer',
'type'=> 'text'
));
$wp_customize->add_setting('pool_services_lite_scroll_to_top_width',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_scroll_to_top_width',array(
'label' => __('Icon Width','pool-services-lite'),
'description' => __('Enter a value in pixels Example:20px','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '10px', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_footer',
'type'=> 'text'
));
$wp_customize->add_setting('pool_services_lite_scroll_to_top_height',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_scroll_to_top_height',array(
'label' => __('Icon Height','pool-services-lite'),
'description' => __('Enter a value in pixels. Example:20px','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '10px', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_footer',
'type'=> 'text'
));
$wp_customize->add_setting( 'pool_services_lite_scroll_to_top_border_radius', array(
'default' => '',
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_sanitize_number_range'
) );
$wp_customize->add_control( 'pool_services_lite_scroll_to_top_border_radius', array(
'label' => esc_html__( 'Icon Border Radius','pool-services-lite' ),
'section' => 'pool_services_lite_footer',
'type' => 'range',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
) );
$wp_customize->add_setting('pool_services_lite_scroll_top_alignment',array(
'default' => 'Right',
'sanitize_callback' => 'pool_services_lite_sanitize_choices'
));
$wp_customize->add_control(new Pool_Services_Lite_Image_Radio_Control($wp_customize, 'pool_services_lite_scroll_top_alignment', array(
'type' => 'select',
'label' => __('Scroll To Top','pool-services-lite'),
'section' => 'pool_services_lite_footer',
'settings' => 'pool_services_lite_scroll_top_alignment',
'choices' => array(
'Left' => esc_url(get_template_directory_uri()).'/assets/images/layout1.png',
'Center' => esc_url(get_template_directory_uri()).'/assets/images/layout2.png',
'Right' => esc_url(get_template_directory_uri()).'/assets/images/layout3.png'
))));
//Blog Post
$wp_customize->add_panel( $PoolServicesLiteParentPanel );
$BlogPostParentPanel = new Pool_Services_Lite_WP_Customize_Panel( $wp_customize, 'blog_post_parent_panel', array(
'title' => __( 'Blog Post Settings', 'pool-services-lite' ),
'panel' => 'pool_services_lite_panel_id',
));
$wp_customize->add_panel( $BlogPostParentPanel );
// Add example section and controls to the middle (second) panel
$wp_customize->add_section( 'pool_services_lite_post_settings', array(
'title' => __( 'Post Settings', 'pool-services-lite' ),
'panel' => 'blog_post_parent_panel',
));
$wp_customize->add_setting('pool_services_lite_theme_options',array(
'default' => 'Right Sidebar',
'sanitize_callback' => 'pool_services_lite_sanitize_choices'
));
$wp_customize->add_control('pool_services_lite_theme_options',array(
'type' => 'select',
'label' => __('Post Sidebar Layout','pool-services-lite'),
'description' => __('Here you can change the sidebar layout for posts. ','pool-services-lite'),
'section' => 'pool_services_lite_post_settings',
'choices' => array(
'Left Sidebar' => __('Left Sidebar','pool-services-lite'),
'Right Sidebar' => __('Right Sidebar','pool-services-lite'),
'One Column' => __('One Column','pool-services-lite'),
'Three Columns' => __('Three Columns','pool-services-lite'),
'Four Columns' => __('Four Columns','pool-services-lite'),
'Grid Layout' => __('Grid Layout','pool-services-lite')
),
) );
//Blog layout
$wp_customize->add_setting('pool_services_lite_blog_layout_option',array(
'default' => 'Default',
'sanitize_callback' => 'pool_services_lite_sanitize_choices'
));
$wp_customize->add_control(new Pool_Services_Lite_Image_Radio_Control($wp_customize, 'pool_services_lite_blog_layout_option', array(
'type' => 'select',
'label' => __('Blog Layouts','pool-services-lite'),
'section' => 'pool_services_lite_post_settings',
'choices' => array(
'Default' => esc_url(get_template_directory_uri()).'/assets/images/blog-layout1.png',
'Center' => esc_url(get_template_directory_uri()).'/assets/images/blog-layout2.png',
'Left' => esc_url(get_template_directory_uri()).'/assets/images/blog-layout3.png',
))));
//Selective Refresh
$wp_customize->selective_refresh->add_partial('pool_services_lite_toggle_postdate', array(
'selector' => '.post-main-box h2 a',
'render_callback' => 'pool_services_lite_customize_partial_pool_services_lite_toggle_postdate',
));
$wp_customize->add_setting('pool_services_lite_toggle_postdate_icon',array(
'default' => 'fas fa-calendar-alt',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new Pool_Services_Lite_Fontawesome_Icon_Chooser(
$wp_customize,'pool_services_lite_toggle_postdate_icon',array(
'label' => __('Add Post Date Icon','pool-services-lite'),
'transport' => 'refresh',
'section' => 'pool_services_lite_post_settings',
'setting' => 'pool_services_lite_toggle_postdate_icon',
'type' => 'icon'
)));
$wp_customize->add_setting( 'pool_services_lite_toggle_postdate',array(
'default' => 1,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
) );
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_toggle_postdate',array(
'label' => esc_html__( 'Show / Hide Post Date','pool-services-lite' ),
'section' => 'pool_services_lite_post_settings'
)));
$wp_customize->add_setting('pool_services_lite_toggle_author_icon',array(
'default' => 'far fa-user',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new Pool_Services_Lite_Fontawesome_Icon_Chooser(
$wp_customize,'pool_services_lite_toggle_author_icon',array(
'label' => __('Add Author Icon','pool-services-lite'),
'transport' => 'refresh',
'section' => 'pool_services_lite_post_settings',
'setting' => 'pool_services_lite_toggle_author_icon',
'type' => 'icon'
)));
$wp_customize->add_setting( 'pool_services_lite_toggle_author',array(
'default' => 1,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
) );
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_toggle_author',array(
'label' => esc_html__( 'Show / Hide Author','pool-services-lite' ),
'section' => 'pool_services_lite_post_settings'
)));
$wp_customize->add_setting('pool_services_lite_toggle_comments_icon',array(
'default' => 'fa fa-comments',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new Pool_Services_Lite_Fontawesome_Icon_Chooser(
$wp_customize,'pool_services_lite_toggle_comments_icon',array(
'label' => __('Add Comments Icon','pool-services-lite'),
'transport' => 'refresh',
'section' => 'pool_services_lite_post_settings',
'setting' => 'pool_services_lite_toggle_comments_icon',
'type' => 'icon'
)));
$wp_customize->add_setting( 'pool_services_lite_toggle_comments',array(
'default' => 1,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
) );
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_toggle_comments',array(
'label' => esc_html__( 'Show / Hide Comments','pool-services-lite' ),
'section' => 'pool_services_lite_post_settings'
)));
$wp_customize->add_setting('pool_services_lite_toggle_time_icon',array(
'default' => 'fas fa-clock',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new Pool_Services_Lite_Fontawesome_Icon_Chooser(
$wp_customize,'pool_services_lite_toggle_time_icon',array(
'label' => __('Add Time Icon','pool-services-lite'),
'transport' => 'refresh',
'section' => 'pool_services_lite_post_settings',
'setting' => 'pool_services_lite_toggle_time_icon',
'type' => 'icon'
)));
$wp_customize->add_setting( 'pool_services_lite_toggle_time',array(
'default' => 1,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
) );
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_toggle_time',array(
'label' => esc_html__( 'Show / Hide Time','pool-services-lite' ),
'section' => 'pool_services_lite_post_settings'
)));
$wp_customize->add_setting( 'pool_services_lite_featured_image_hide_show',array(
'default' => 1,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
));
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_featured_image_hide_show', array(
'label' => esc_html__( 'Show / Hide Featured Image','pool-services-lite' ),
'section' => 'pool_services_lite_post_settings'
)));
$wp_customize->add_setting( 'pool_services_lite_featured_image_border_radius', array(
'default' => '0',
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_sanitize_number_range'
) );
$wp_customize->add_control( 'pool_services_lite_featured_image_border_radius', array(
'label' => esc_html__( 'Featured Image Border Radius','pool-services-lite' ),
'section' => 'pool_services_lite_post_settings',
'type' => 'range',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
) );
$wp_customize->add_setting( 'pool_services_lite_featured_image_box_shadow', array(
'default' => '0',
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_sanitize_number_range'
) );
$wp_customize->add_control( 'pool_services_lite_featured_image_box_shadow', array(
'label' => esc_html__( 'Featured Image Box Shadow','pool-services-lite' ),
'section' => 'pool_services_lite_post_settings',
'type' => 'range',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
) );
//Featured Image
$wp_customize->add_setting('pool_services_lite_blog_post_featured_image_dimension',array(
'default' => 'default',
'sanitize_callback' => 'pool_services_lite_sanitize_choices'
));
$wp_customize->add_control('pool_services_lite_blog_post_featured_image_dimension',array(
'type' => 'select',
'label' => __('Blog Post Featured Image Dimension','pool-services-lite'),
'section' => 'pool_services_lite_post_settings',
'choices' => array(
'default' => __('Default','pool-services-lite'),
'custom' => __('Custom Image Size','pool-services-lite'),
),
));
$wp_customize->add_setting('pool_services_lite_blog_post_featured_image_custom_width',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_blog_post_featured_image_custom_width',array(
'label' => __('Featured Image Custom Width','pool-services-lite'),
'description' => __('Enter a value in pixels. Example:20px','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '10px', 'pool-services-lite' ),),
'section'=> 'pool_services_lite_post_settings',
'type'=> 'text',
'active_callback' => 'pool_services_lite_blog_post_featured_image_dimension'
));
$wp_customize->add_setting('pool_services_lite_blog_post_featured_image_custom_height',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_blog_post_featured_image_custom_height',array(
'label' => __('Featured Image Custom Height','pool-services-lite'),
'description' => __('Enter a value in pixels. Example:20px','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '10px', 'pool-services-lite' ),),
'section'=> 'pool_services_lite_post_settings',
'type'=> 'text',
'active_callback' => 'pool_services_lite_blog_post_featured_image_dimension'
));
$wp_customize->add_setting( 'pool_services_lite_excerpt_number', array(
'default' => 30,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_sanitize_number_range'
) );
$wp_customize->add_control( 'pool_services_lite_excerpt_number', array(
'label' => esc_html__( 'Excerpt length','pool-services-lite' ),
'section' => 'pool_services_lite_post_settings',
'type' => 'range',
'settings' => 'pool_services_lite_excerpt_number',
'input_attrs' => array(
'step' => 2,
'min' => 0,
'max' => 50,
),
) );
$wp_customize->add_setting('pool_services_lite_meta_field_separator',array(
'default'=> '|',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_meta_field_separator',array(
'label' => __('Add Meta Separator','pool-services-lite'),
'description' => __('Add the seperator for meta box. Example: "|", "/", etc.','pool-services-lite'),
'section'=> 'pool_services_lite_post_settings',
'type'=> 'text'
));
$wp_customize->add_setting('pool_services_lite_blog_page_posts_settings',array(
'default' => 'Into Blocks',
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_sanitize_choices'
));
$wp_customize->add_control('pool_services_lite_blog_page_posts_settings',array(
'type' => 'select',
'label' => __('Display Blog Posts','pool-services-lite'),
'section' => 'pool_services_lite_post_settings',
'choices' => array(
'Into Blocks' => __('Into Blocks','pool-services-lite'),
'Without Blocks' => __('Without Blocks','pool-services-lite')
),
) );
$wp_customize->add_setting('pool_services_lite_excerpt_settings',array(
'default' => 'Excerpt',
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_sanitize_choices'
));
$wp_customize->add_control('pool_services_lite_excerpt_settings',array(
'type' => 'select',
'label' => __('Post Content','pool-services-lite'),
'section' => 'pool_services_lite_post_settings',
'choices' => array(
'Content' => __('Content','pool-services-lite'),
'Excerpt' => __('Excerpt','pool-services-lite'),
'No Content' => __('No Content','pool-services-lite')
),
) );
$wp_customize->add_setting('pool_services_lite_excerpt_suffix',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_excerpt_suffix',array(
'label' => __('Add Excerpt Suffix','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '[...]', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_post_settings',
'type'=> 'text'
));
$wp_customize->add_setting( 'pool_services_lite_blog_pagination_hide_show',array(
'default' => 1,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
));
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_blog_pagination_hide_show',array(
'label' => esc_html__( 'Show / Hide Blog Pagination','pool-services-lite' ),
'section' => 'pool_services_lite_post_settings'
)));
$wp_customize->add_setting( 'pool_services_lite_blog_pagination_type', array(
'default' => 'blog-page-numbers',
'sanitize_callback' => 'pool_services_lite_sanitize_choices'
));
$wp_customize->add_control( 'pool_services_lite_blog_pagination_type', array(
'section' => 'pool_services_lite_post_settings',
'type' => 'select',
'label' => __( 'Blog Pagination', 'pool-services-lite' ),
'choices' => array(
'blog-page-numbers' => __( 'Numeric', 'pool-services-lite' ),
'next-prev' => __( 'Older Posts/Newer Posts', 'pool-services-lite' ),
)));
// Button Settings
$wp_customize->add_section( 'pool_services_lite_button_settings', array(
'title' => __( 'Button Settings', 'pool-services-lite' ),
'panel' => 'blog_post_parent_panel',
));
//Selective Refresh
$wp_customize->selective_refresh->add_partial('pool_services_lite_button_text', array(
'selector' => '.post-main-box .more-btn a',
'render_callback' => 'pool_services_lite_customize_partial_pool_services_lite_button_text',
));
$wp_customize->add_setting('pool_services_lite_button_text',array(
'default'=> 'Read More',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_button_text',array(
'label' => __('Add Button Text','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( 'Read More', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_button_settings',
'type'=> 'text'
));
// font size button
$wp_customize->add_setting('pool_services_lite_button_font_size',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_button_font_size',array(
'label' => __('Button Font Size','pool-services-lite'),
'description' => __('Enter a value in pixels. Example:20px','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '10px', 'pool-services-lite' ),
),
'type' => 'text',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
'section'=> 'pool_services_lite_button_settings',
));
$wp_customize->add_setting( 'pool_services_lite_button_border_radius', array(
'default' => '',
'type' => 'theme_mod',
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_sanitize_number_range',
'sanitize_js_callback' => 'absint',
) );
$wp_customize->add_control( 'pool_services_lite_button_border_radius', array(
'label' => esc_html__( 'Button Border Radius','pool-services-lite' ),
'section' => 'pool_services_lite_button_settings',
'type' => 'range',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
) );
$wp_customize->add_setting('pool_services_lite_button_padding_top_bottom',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_button_padding_top_bottom',array(
'label' => esc_html__('Padding Top Bottom','pool-services-lite'),
'description' => esc_html__('Enter a value in pixels. Example:20px','pool-services-lite'),
'input_attrs' => array(
'placeholder' => esc_html__( '10px', 'pool-services-lite' ),
),
'section' => 'pool_services_lite_button_settings',
'type' => 'text'
));
$wp_customize->add_setting('pool_services_lite_button_padding_left_right',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_button_padding_left_right',array(
'label' => esc_html__('Padding Left Right','pool-services-lite'),
'description' => esc_html__('Enter a value in pixels. Example:20px','pool-services-lite'),
'input_attrs' => array(
'placeholder' => esc_html__( '10px', 'pool-services-lite' ),
),
'section' => 'pool_services_lite_button_settings',
'type' => 'text'
));
$wp_customize->add_setting('pool_services_lite_button_letter_spacing',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_button_letter_spacing',array(
'label' => __('Button Letter Spacing','pool-services-lite'),
'description' => __('Enter a value in pixels. Example:20px','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '10px', 'pool-services-lite' ),
),
'type' => 'text',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
'section'=> 'pool_services_lite_button_settings',
));
// text trasform
$wp_customize->add_setting('pool_services_lite_button_text_transform',array(
'default'=> 'Uppercase',
'sanitize_callback' => 'pool_services_lite_sanitize_choices'
));
$wp_customize->add_control('pool_services_lite_button_text_transform',array(
'type' => 'radio',
'label' => __('Button Text Transform','pool-services-lite'),
'choices' => array(
'Uppercase' => __('Uppercase','pool-services-lite'),
'Capitalize' => __('Capitalize','pool-services-lite'),
'Lowercase' => __('Lowercase','pool-services-lite'),
),
'section'=> 'pool_services_lite_button_settings',
));
// Related Post Settings
$wp_customize->add_section( 'pool_services_lite_related_posts_settings', array(
'title' => __( 'Related Posts Settings', 'pool-services-lite' ),
'panel' => 'blog_post_parent_panel',
));
//Selective Refresh
$wp_customize->selective_refresh->add_partial('pool_services_lite_related_post_title', array(
'selector' => '.related-post h3',
'render_callback' => 'pool_services_lite_customize_partial_pool_services_lite_related_post_title',
));
$wp_customize->add_setting( 'pool_services_lite_related_post',array(
'default' => 1,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
) );
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_related_post',array(
'label' => esc_html__( 'Show / Hide Related Post','pool-services-lite' ),
'section' => 'pool_services_lite_related_posts_settings'
)));
$wp_customize->add_setting('pool_services_lite_related_post_title',array(
'default'=> 'Related Post',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_related_post_title',array(
'label' => __('Add Related Post Title','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( 'Related Post', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_related_posts_settings',
'type'=> 'text'
));
$wp_customize->add_setting('pool_services_lite_related_posts_count',array(
'default'=> '3',
'sanitize_callback' => 'pool_services_lite_sanitize_float'
));
$wp_customize->add_control('pool_services_lite_related_posts_count',array(
'label' => __('Add Related Post Count','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '3', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_related_posts_settings',
'type'=> 'number'
));
$wp_customize->add_setting( 'pool_services_lite_related_posts_excerpt_number', array(
'default' => 20,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_sanitize_number_range'
) );
$wp_customize->add_control( 'pool_services_lite_related_posts_excerpt_number', array(
'label' => esc_html__( 'Related Posts Excerpt length','pool-services-lite' ),
'section' => 'pool_services_lite_related_posts_settings',
'type' => 'range',
'settings' => 'pool_services_lite_related_posts_excerpt_number',
'input_attrs' => array(
'step' => 5,
'min' => 0,
'max' => 50,
),
) );
$wp_customize->add_setting( 'pool_services_lite_related_image_hide_show',array(
'default' => 1,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
));
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_related_image_hide_show', array(
'label' => esc_html__( 'Show / Hide Featured Image','pool-services-lite' ),
'section' => 'pool_services_lite_related_posts_settings'
)));
$wp_customize->add_setting( 'pool_services_lite_related_image_box_shadow', array(
'default' => '0',
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_sanitize_number_range'
) );
$wp_customize->add_control( 'pool_services_lite_related_image_box_shadow', array(
'label' => esc_html__( 'Related post Image Box Shadow','pool-services-lite' ),
'section' => 'pool_services_lite_related_posts_settings',
'type' => 'range',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
) );
$wp_customize->add_setting('pool_services_lite_related_button_text',array(
'default'=> esc_html__('Read More','pool-services-lite'),
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_related_button_text',array(
'label' => esc_html__('Add Button Text','pool-services-lite'),
'input_attrs' => array(
'placeholder' => esc_html__( 'Read More', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_related_posts_settings',
'type'=> 'text'
));
// Single Posts Settings
$wp_customize->add_section( 'pool_services_lite_single_blog_settings', array(
'title' => __( 'Single Post Settings', 'pool-services-lite' ),
'panel' => 'blog_post_parent_panel',
));
$wp_customize->add_setting('pool_services_lite_single_postdate_icon',array(
'default' => 'fas fa-calendar-alt',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new Pool_Services_Lite_Fontawesome_Icon_Chooser(
$wp_customize,'pool_services_lite_single_postdate_icon',array(
'label' => __('Add Post Date Icon','pool-services-lite'),
'transport' => 'refresh',
'section' => 'pool_services_lite_single_blog_settings',
'setting' => 'pool_services_lite_single_postdate_icon',
'type' => 'icon'
)));
$wp_customize->add_setting( 'pool_services_lite_single_postdate',array(
'default' => 1,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
) );
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_single_postdate',array(
'label' => esc_html__( 'Show / Hide Date','pool-services-lite' ),
'section' => 'pool_services_lite_single_blog_settings'
)));
$wp_customize->add_setting('pool_services_lite_single_author_icon',array(
'default' => 'far fa-user',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new Pool_Services_Lite_Fontawesome_Icon_Chooser(
$wp_customize,'pool_services_lite_single_author_icon',array(
'label' => __('Add Author Icon','pool-services-lite'),
'transport' => 'refresh',
'section' => 'pool_services_lite_single_blog_settings',
'setting' => 'pool_services_lite_single_author_icon',
'type' => 'icon'
)));
$wp_customize->add_setting( 'pool_services_lite_single_author',array(
'default' => 1,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
) );
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_single_author',array(
'label' => esc_html__( 'Show / Hide Author','pool-services-lite' ),
'section' => 'pool_services_lite_single_blog_settings'
)));
$wp_customize->add_setting('pool_services_lite_single_comments_icon',array(
'default' => 'fa fa-comments',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new Pool_Services_Lite_Fontawesome_Icon_Chooser(
$wp_customize,'pool_services_lite_single_comments_icon',array(
'label' => __('Add Comments Icon','pool-services-lite'),
'transport' => 'refresh',
'section' => 'pool_services_lite_single_blog_settings',
'setting' => 'pool_services_lite_single_comments_icon',
'type' => 'icon'
)));
$wp_customize->add_setting( 'pool_services_lite_single_comments',array(
'default' => 1,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
) );
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_single_comments',array(
'label' => esc_html__( 'Show / Hide Comments','pool-services-lite' ),
'section' => 'pool_services_lite_single_blog_settings'
)));
$wp_customize->add_setting('pool_services_lite_single_time_icon',array(
'default' => 'fas fa-clock',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new Pool_Services_Lite_Fontawesome_Icon_Chooser(
$wp_customize,'pool_services_lite_single_time_icon',array(
'label' => __('Add Time Icon','pool-services-lite'),
'transport' => 'refresh',
'section' => 'pool_services_lite_single_blog_settings',
'setting' => 'pool_services_lite_single_time_icon',
'type' => 'icon'
)));
$wp_customize->add_setting( 'pool_services_lite_single_time',array(
'default' => 1,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
) );
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_single_time',array(
'label' => esc_html__( 'Show / Hide Time','pool-services-lite' ),
'section' => 'pool_services_lite_single_blog_settings'
)));
$wp_customize->add_setting( 'pool_services_lite_single_post_breadcrumb',array(
'default' => 1,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
) );
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_single_post_breadcrumb',array(
'label' => esc_html__( 'Show / Hide Breadcrumb','pool-services-lite' ),
'section' => 'pool_services_lite_single_blog_settings'
)));
// Single Posts Category
$wp_customize->add_setting( 'pool_services_lite_single_post_category',array(
'default' => true,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
) );
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_single_post_category',array(
'label' => esc_html__( 'Show / Hide Category','pool-services-lite' ),
'section' => 'pool_services_lite_single_blog_settings'
)));
$wp_customize->add_setting( 'pool_services_lite_toggle_tags',array(
'default' => 0,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
));
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_toggle_tags', array(
'label' => esc_html__( 'Show / Hide Tags','pool-services-lite' ),
'section' => 'pool_services_lite_single_blog_settings'
)));
$wp_customize->add_setting( 'pool_services_lite_single_blog_post_navigation_show_hide',array(
'default' => 1,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
));
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_single_blog_post_navigation_show_hide', array(
'label' => esc_html__( 'Show / Hide Post Navigation','pool-services-lite' ),
'section' => 'pool_services_lite_single_blog_settings'
)));
$wp_customize->add_setting( 'pool_services_lite_singlepost_image_box_shadow', array(
'default' => '0',
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_sanitize_number_range'
) );
$wp_customize->add_control( 'pool_services_lite_singlepost_image_box_shadow', array(
'label' => esc_html__( 'Single post Image Box Shadow','pool-services-lite' ),
'section' => 'pool_services_lite_single_blog_settings',
'type' => 'range',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
) );
$wp_customize->add_setting('pool_services_lite_single_post_meta_field_separator',array(
'default'=> '|',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_single_post_meta_field_separator',array(
'label' => __('Add Meta Separator','pool-services-lite'),
'description' => __('Add the seperator for meta box. Example: "|", "/", etc.','pool-services-lite'),
'section'=> 'pool_services_lite_single_blog_settings',
'type'=> 'text'
));
//navigation text
$wp_customize->add_setting('pool_services_lite_single_blog_prev_navigation_text',array(
'default'=> 'PREVIOUS',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_single_blog_prev_navigation_text',array(
'label' => __('Post Navigation Text','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( 'PREVIOUS', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_single_blog_settings',
'type'=> 'text'
));
$wp_customize->add_setting('pool_services_lite_single_blog_next_navigation_text',array(
'default'=> 'NEXT',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_single_blog_next_navigation_text',array(
'label' => __('Post Navigation Text','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( 'NEXT', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_single_blog_settings',
'type'=> 'text'
));
$wp_customize->add_setting('pool_services_lite_single_blog_comment_title',array(
'default'=> 'Leave a Reply',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_single_blog_comment_title',array(
'label' => __('Add Comment Title','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( 'Leave a Reply', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_single_blog_settings',
'type'=> 'text'
));
$wp_customize->add_setting('pool_services_lite_single_blog_comment_button_text',array(
'default'=> 'Post Comment',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_single_blog_comment_button_text',array(
'label' => __('Add Comment Button Text','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( 'Post Comment', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_single_blog_settings',
'type'=> 'text'
));
$wp_customize->add_setting('pool_services_lite_single_blog_comment_width',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_single_blog_comment_width',array(
'label' => __('Comment Form Width','pool-services-lite'),
'description' => __('Enter a value in %. Example:50%','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '100%', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_single_blog_settings',
'type'=> 'text'
));
// Grid layout setting
$wp_customize->add_section( 'pool_services_lite_grid_layout_settings', array(
'title' => __( 'Grid Layout Settings', 'pool-services-lite' ),
'panel' => 'blog_post_parent_panel',
));
$wp_customize->add_setting('pool_services_lite_grid_postdate_icon',array(
'default' => 'fas fa-calendar-alt',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new Pool_Services_Lite_Fontawesome_Icon_Chooser(
$wp_customize,'pool_services_lite_grid_postdate_icon',array(
'label' => __('Add Post Date Icon','pool-services-lite'),
'transport' => 'refresh',
'section' => 'pool_services_lite_grid_layout_settings',
'setting' => 'pool_services_lite_grid_postdate_icon',
'type' => 'icon'
)));
$wp_customize->add_setting( 'pool_services_lite_grid_postdate',array(
'default' => 1,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
) );
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_grid_postdate',array(
'label' => esc_html__( 'Show / Hide Post Date','pool-services-lite' ),
'section' => 'pool_services_lite_grid_layout_settings'
)));
$wp_customize->add_setting('pool_services_lite_grid_author_icon',array(
'default' => 'far fa-user',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new Pool_Services_Lite_Fontawesome_Icon_Chooser(
$wp_customize,'pool_services_lite_grid_author_icon',array(
'label' => __('Add Author Icon','pool-services-lite'),
'transport' => 'refresh',
'section' => 'pool_services_lite_grid_layout_settings',
'setting' => 'pool_services_lite_grid_author_icon',
'type' => 'icon'
)));
$wp_customize->add_setting( 'pool_services_lite_grid_author',array(
'default' => 1,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
) );
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_grid_author',array(
'label' => esc_html__( 'Show / Hide Author','pool-services-lite' ),
'section' => 'pool_services_lite_grid_layout_settings'
)));
$wp_customize->add_setting('pool_services_lite_grid_comments_icon',array(
'default' => 'fa fa-comments',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new Pool_Services_Lite_Fontawesome_Icon_Chooser(
$wp_customize,'pool_services_lite_grid_comments_icon',array(
'label' => __('Add Comments Icon','pool-services-lite'),
'transport' => 'refresh',
'section' => 'pool_services_lite_grid_layout_settings',
'setting' => 'pool_services_lite_grid_comments_icon',
'type' => 'icon'
)));
$wp_customize->add_setting( 'pool_services_lite_grid_comments',array(
'default' => 1,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
) );
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_grid_comments',array(
'label' => esc_html__( 'Show / Hide Comments','pool-services-lite' ),
'section' => 'pool_services_lite_grid_layout_settings'
)));
$wp_customize->add_setting( 'pool_services_lite_grid_image_hide_show',array(
'default' => 1,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
));
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_grid_image_hide_show', array(
'label' => esc_html__( 'Show / Hide Featured Image','pool-services-lite' ),
'section' => 'pool_services_lite_grid_layout_settings'
)));
$wp_customize->add_setting('pool_services_lite_grid_post_meta_field_separator',array(
'default'=> '|',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_grid_post_meta_field_separator',array(
'label' => __('Add Meta Separator','pool-services-lite'),
'description' => __('Add the seperator for meta box. Example: "|", "/", etc.','pool-services-lite'),
'section'=> 'pool_services_lite_grid_layout_settings',
'type'=> 'text'
));
$wp_customize->add_setting('pool_services_lite_display_grid_posts_settings',array(
'default' => 'Into Blocks',
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_sanitize_choices'
));
$wp_customize->add_control('pool_services_lite_display_grid_posts_settings',array(
'type' => 'select',
'label' => __('Display Grid Posts','pool-services-lite'),
'section' => 'pool_services_lite_grid_layout_settings',
'choices' => array(
'Into Blocks' => __('Into Blocks','pool-services-lite'),
'Without Blocks' => __('Without Blocks','pool-services-lite')
),
) );
$wp_customize->add_setting('pool_services_lite_grid_button_text',array(
'default'=> esc_html__('Read More','pool-services-lite'),
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_grid_button_text',array(
'label' => esc_html__('Add Button Text','pool-services-lite'),
'input_attrs' => array(
'placeholder' => esc_html__( 'Read More', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_grid_layout_settings',
'type'=> 'text'
));
$wp_customize->add_setting('pool_services_lite_grid_excerpt_suffix',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_grid_excerpt_suffix',array(
'label' => __('Add Excerpt Suffix','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '[...]', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_grid_layout_settings',
'type'=> 'text'
));
$wp_customize->add_setting( 'pool_services_lite_grid_featured_image_border_radius', array(
'default' => '0',
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_sanitize_number_range'
) );
$wp_customize->add_control( 'pool_services_lite_grid_featured_image_border_radius', array(
'label' => esc_html__( 'Grid Featured Image Border Radius','pool-services-lite' ),
'section' => 'pool_services_lite_grid_layout_settings',
'type' => 'range',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
) );
$wp_customize->add_setting( 'pool_services_lite_grid_featured_image_box_shadow', array(
'default' => '0',
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_sanitize_number_range'
) );
$wp_customize->add_control( 'pool_services_lite_grid_featured_image_box_shadow', array(
'label' => esc_html__( 'Grid Featured Image Box Shadow','pool-services-lite' ),
'section' => 'pool_services_lite_grid_layout_settings',
'type' => 'range',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
) );
// other settings
$OtherParentPanel = new Pool_Services_Lite_WP_Customize_Panel( $wp_customize, 'pool_services_lite_other_panel_id', array(
'title' => __( 'Others Settings', 'pool-services-lite' ),
'panel' => 'pool_services_lite_panel_id',
));
$wp_customize->add_panel( $OtherParentPanel );
// Layout
$wp_customize->add_section( 'pool_services_lite_left_right', array(
'title' => esc_html__( 'General Settings', 'pool-services-lite' ),
'panel' => 'pool_services_lite_other_panel_id'
) );
$wp_customize->add_setting('pool_services_lite_width_option',array(
'default' => 'Full Width',
'sanitize_callback' => 'pool_services_lite_sanitize_choices'
));
$wp_customize->add_control(new Pool_Services_Lite_Image_Radio_Control($wp_customize, 'pool_services_lite_width_option', array(
'type' => 'select',
'label' => __('Width Layouts','pool-services-lite'),
'description' => __('Here you can change the width layout of Website.','pool-services-lite'),
'section' => 'pool_services_lite_left_right',
'choices' => array(
'Full Width' => esc_url(get_template_directory_uri()).'/assets/images/full-width.png',
'Wide Width' => esc_url(get_template_directory_uri()).'/assets/images/wide-width.png',
'Boxed' => esc_url(get_template_directory_uri()).'/assets/images/boxed-width.png',
))));
$wp_customize->add_setting('pool_services_lite_page_layout',array(
'default' => 'One Column',
'sanitize_callback' => 'pool_services_lite_sanitize_choices'
));
$wp_customize->add_control('pool_services_lite_page_layout',array(
'type' => 'select',
'label' => __('Page Sidebar Layout','pool-services-lite'),
'description' => __('Here you can change the sidebar layout for pages. ','pool-services-lite'),
'section' => 'pool_services_lite_left_right',
'choices' => array(
'Left Sidebar' => __('Left Sidebar','pool-services-lite'),
'Right Sidebar' => __('Right Sidebar','pool-services-lite'),
'One Column' => __('One Column','pool-services-lite')
),
) );
$wp_customize->add_setting( 'pool_services_lite_single_page_breadcrumb',array(
'default' => 1,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
) );
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_single_page_breadcrumb',array(
'label' => esc_html__( 'Show / Hide Breadcrumb','pool-services-lite' ),
'section' => 'pool_services_lite_left_right'
)));
//Wow Animation
$wp_customize->add_setting( 'pool_services_lite_animation',array(
'default' => 1,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
));
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_animation',array(
'label' => esc_html__( 'Show / Hide Animations','pool-services-lite' ),
'description' => __('Here you can disable overall site animation effect','pool-services-lite'),
'section' => 'pool_services_lite_left_right'
)));
$wp_customize->add_setting('pool_services_lite_reset_all_settings',array(
'sanitize_callback' => 'sanitize_text_field',
));
$wp_customize->add_control(new Pool_Services_Lite_Reset_Custom_Control($wp_customize, 'pool_services_lite_reset_all_settings',array(
'type' => 'reset_control',
'label' => __('Reset All Settings', 'pool-services-lite'),
'description' => 'pool_services_lite_reset_all_settings',
'section' => 'pool_services_lite_left_right'
)));
//Pre-Loader
$wp_customize->add_setting( 'pool_services_lite_loader_enable',array(
'default' => 0,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
) );
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_loader_enable',array(
'label' => esc_html__( 'Show / Hide Pre-Loader','pool-services-lite' ),
'section' => 'pool_services_lite_left_right'
)));
$wp_customize->add_setting('pool_services_lite_preloader_bg_color', array(
'default' => '#36a0e2',
'sanitize_callback' => 'sanitize_hex_color',
));
$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'pool_services_lite_preloader_bg_color', array(
'label' => __('Pre-Loader Background Color', 'pool-services-lite'),
'section' => 'pool_services_lite_left_right',
)));
$wp_customize->add_setting('pool_services_lite_preloader_border_color', array(
'default' => '#ffffff',
'sanitize_callback' => 'sanitize_hex_color',
));
$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'pool_services_lite_preloader_border_color', array(
'label' => __('Pre-Loader Border Color', 'pool-services-lite'),
'section' => 'pool_services_lite_left_right',
)));
$wp_customize->add_setting('pool_services_lite_preloader_bg_img',array(
'default' => '',
'sanitize_callback' => 'esc_url_raw',
));
$wp_customize->add_control( new WP_Customize_Image_Control($wp_customize,'pool_services_lite_preloader_bg_img',array(
'label' => __('Preloader Background Image','pool-services-lite'),
'section' => 'pool_services_lite_left_right'
)));
$wp_customize->add_setting('pool_services_lite_bradcrumbs_alignment',array(
'default' => 'Left',
'sanitize_callback' => 'pool_services_lite_sanitize_choices'
));
$wp_customize->add_control('pool_services_lite_bradcrumbs_alignment',array(
'type' => 'select',
'label' => __('Bradcrumbs Alignment','pool-services-lite'),
'section' => 'pool_services_lite_left_right',
'choices' => array(
'Left' => __('Left','pool-services-lite'),
'Right' => __('Right','pool-services-lite'),
'Center' => __('Center','pool-services-lite'),
),
) );
//404 Page Setting
$wp_customize->add_section('pool_services_lite_404_page',array(
'title' => __('404 Page Settings','pool-services-lite'),
'panel' => 'pool_services_lite_other_panel_id',
));
$wp_customize->add_setting('pool_services_lite_404_page_title',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_404_page_title',array(
'label' => __('Add Title','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '404 Not Found', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_404_page',
'type'=> 'text'
));
$wp_customize->add_setting('pool_services_lite_404_page_content',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_404_page_content',array(
'label' => __('Add Text','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( 'Looks like you have taken a wrong turn, Dont worry, it happens to the best of us.', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_404_page',
'type'=> 'text'
));
$wp_customize->add_setting('pool_services_lite_404_page_button_text',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_404_page_button_text',array(
'label' => __('Add Button Text','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( 'GO BACK', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_404_page',
'type'=> 'text'
));
//No Result Page Setting
$wp_customize->add_section('pool_services_lite_no_results_page',array(
'title' => __('No Results Page Settings','pool-services-lite'),
'panel' => 'pool_services_lite_other_panel_id',
));
$wp_customize->add_setting('pool_services_lite_no_results_page_title',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_no_results_page_title',array(
'label' => __('Add Title','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( 'Nothing Found', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_no_results_page',
'type'=> 'text'
));
$wp_customize->add_setting('pool_services_lite_no_results_page_content',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_no_results_page_content',array(
'label' => __('Add Text','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_no_results_page',
'type'=> 'text'
));
//Social Icon Setting
$wp_customize->add_section('pool_services_lite_social_icon_settings',array(
'title' => __('Social Icons Settings','pool-services-lite'),
'panel' => 'pool_services_lite_other_panel_id',
));
$wp_customize->add_setting('pool_services_lite_social_icon_font_size',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_social_icon_font_size',array(
'label' => __('Icon Font Size','pool-services-lite'),
'description' => __('Enter a value in pixels. Example:20px','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '10px', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_social_icon_settings',
'type'=> 'text'
));
$wp_customize->add_setting('pool_services_lite_social_icon_padding',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_social_icon_padding',array(
'label' => __('Icon Padding','pool-services-lite'),
'description' => __('Enter a value in pixels. Example:20px','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '10px', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_social_icon_settings',
'type'=> 'text'
));
$wp_customize->add_setting('pool_services_lite_social_icon_width',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_social_icon_width',array(
'label' => __('Icon Width','pool-services-lite'),
'description' => __('Enter a value in pixels. Example:20px','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '10px', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_social_icon_settings',
'type'=> 'text'
));
$wp_customize->add_setting('pool_services_lite_social_icon_height',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_social_icon_height',array(
'label' => __('Icon Height','pool-services-lite'),
'description' => __('Enter a value in pixels. Example:20px','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '10px', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_social_icon_settings',
'type'=> 'text'
));
$wp_customize->add_setting( 'pool_services_lite_social_icon_border_radius', array(
'default' => '',
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_sanitize_number_range'
) );
$wp_customize->add_control( 'pool_services_lite_social_icon_border_radius', array(
'label' => esc_html__( 'Icon Border Radius','pool-services-lite' ),
'section' => 'pool_services_lite_social_icon_settings',
'type' => 'range',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
) );
//Responsive Media Settings
$wp_customize->add_section('pool_services_lite_responsive_media',array(
'title' => __('Responsive Media','pool-services-lite'),
'panel' => 'pool_services_lite_other_panel_id',
));
$wp_customize->add_setting( 'pool_services_lite_responsive_topbar_hide',array(
'default' => 0,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
));
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_responsive_topbar_hide',array(
'label' => esc_html__( 'Show / Hide Topbar','pool-services-lite' ),
'section' => 'pool_services_lite_responsive_media'
)));
$wp_customize->add_setting( 'pool_services_lite_stickyheader_hide_show',array(
'default' => 0,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
));
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_stickyheader_hide_show',array(
'label' => esc_html__( 'Show / Hide Sticky Header','pool-services-lite' ),
'section' => 'pool_services_lite_responsive_media'
)));
$wp_customize->add_setting( 'pool_services_lite_resp_slider_hide_show',array(
'default' => 1,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
));
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_resp_slider_hide_show',array(
'label' => esc_html__( 'Show / Hide Slider','pool-services-lite' ),
'section' => 'pool_services_lite_responsive_media'
)));
$wp_customize->add_setting( 'pool_services_lite_sidebar_hide_show',array(
'default' => 1,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
));
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_sidebar_hide_show',array(
'label' => esc_html__( 'Show / Hide Sidebar','pool-services-lite' ),
'section' => 'pool_services_lite_responsive_media'
)));
$wp_customize->add_setting( 'pool_services_lite_responsive_preloader_hide',array(
'default' => false,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
) );
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_responsive_preloader_hide',array(
'label' => esc_html__( 'Show / Hide Preloader','pool-services-lite' ),
'section' => 'pool_services_lite_responsive_media'
)));
$wp_customize->add_setting( 'pool_services_lite_resp_scroll_top_hide_show',array(
'default' => 1,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
));
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_resp_scroll_top_hide_show',array(
'label' => esc_html__( 'Show / Hide Scroll To Top','pool-services-lite' ),
'section' => 'pool_services_lite_responsive_media'
)));
$wp_customize->add_setting('pool_services_lite_resp_menu_toggle_btn_bg_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color',
));
$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'pool_services_lite_resp_menu_toggle_btn_bg_color', array(
'label' => __('Toggle Button Bg Color', 'pool-services-lite'),
'section' => 'pool_services_lite_responsive_media',
)));
$wp_customize->add_setting('pool_services_lite_res_open_menu_icon',array(
'default' => 'fas fa-bars',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new Pool_Services_Lite_Fontawesome_Icon_Chooser(
$wp_customize,'pool_services_lite_res_open_menu_icon',array(
'label' => __('Add Open Menu Icon','pool-services-lite'),
'transport' => 'refresh',
'section' => 'pool_services_lite_responsive_media',
'setting' => 'pool_services_lite_res_open_menu_icon',
'type' => 'icon'
)));
$wp_customize->add_setting('pool_services_lite_res_close_menus_icon',array(
'default' => 'fas fa-times',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new Pool_Services_Lite_Fontawesome_Icon_Chooser(
$wp_customize,'pool_services_lite_res_close_menus_icon',array(
'label' => __('Add Close Menu Icon','pool-services-lite'),
'transport' => 'refresh',
'section' => 'pool_services_lite_responsive_media',
'setting' => 'pool_services_lite_res_close_menus_icon',
'type' => 'icon'
)));
//Woocommerce settings
$wp_customize->add_section('pool_services_lite_woocommerce_section', array(
'title' => __('WooCommerce Layout', 'pool-services-lite'),
'priority' => null,
'panel' => 'woocommerce',
));
//Shop Page Featured Image
$wp_customize->add_setting( 'pool_services_lite_shop_featured_image_border_radius', array(
'default' => '0',
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_sanitize_number_range'
) );
$wp_customize->add_control( 'pool_services_lite_shop_featured_image_border_radius', array(
'label' => esc_html__( 'Shop Page Featured Image Border Radius','pool-services-lite' ),
'section' => 'pool_services_lite_woocommerce_section',
'type' => 'range',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
) );
$wp_customize->add_setting( 'pool_services_lite_shop_featured_image_box_shadow', array(
'default' => '0',
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_sanitize_number_range'
) );
$wp_customize->add_control( 'pool_services_lite_shop_featured_image_box_shadow', array(
'label' => esc_html__( 'Shop Page Featured Image Box Shadow','pool-services-lite' ),
'section' => 'pool_services_lite_woocommerce_section',
'type' => 'range',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
) );
//Selective Refresh
$wp_customize->selective_refresh->add_partial( 'pool_services_lite_woocommerce_shop_page_sidebar', array( 'selector' => '.post-type-archive-product #sidebar',
'render_callback' => 'pool_services_lite_customize_partial_pool_services_lite_woocommerce_shop_page_sidebar', ) );
//Woocommerce Shop Page Sidebar
$wp_customize->add_setting( 'pool_services_lite_woocommerce_shop_page_sidebar',array(
'default' => 0,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
) );
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_woocommerce_shop_page_sidebar',array(
'label' => esc_html__( 'Show / Hide Shop Page Sidebar','pool-services-lite' ),
'section' => 'pool_services_lite_woocommerce_section'
)));
$wp_customize->add_setting('pool_services_lite_shop_page_layout',array(
'default' => 'Right Sidebar',
'sanitize_callback' => 'pool_services_lite_sanitize_choices'
));
$wp_customize->add_control('pool_services_lite_shop_page_layout',array(
'type' => 'select',
'label' => __('Shop Page Sidebar Layout','pool-services-lite'),
'section' => 'pool_services_lite_woocommerce_section',
'choices' => array(
'Left Sidebar' => __('Left Sidebar','pool-services-lite'),
'Right Sidebar' => __('Right Sidebar','pool-services-lite'),
),
) );
//Selective Refresh
$wp_customize->selective_refresh->add_partial( 'pool_services_lite_woocommerce_single_product_page_sidebar', array( 'selector' => '.single-product #sidebar',
'render_callback' => 'pool_services_lite_customize_partial_pool_services_lite_woocommerce_single_product_page_sidebar', ) );
//Woocommerce Single Product page Sidebar
$wp_customize->add_setting( 'pool_services_lite_woocommerce_single_product_page_sidebar',array(
'default' => 0,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
) );
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_woocommerce_single_product_page_sidebar',array(
'label' => esc_html__( 'Show / Hide Single Product Sidebar','pool-services-lite' ),
'section' => 'pool_services_lite_woocommerce_section'
)));
$wp_customize->add_setting('pool_services_lite_single_product_layout',array(
'default' => 'Right Sidebar',
'sanitize_callback' => 'pool_services_lite_sanitize_choices'
));
$wp_customize->add_control('pool_services_lite_single_product_layout',array(
'type' => 'select',
'label' => __('Single Product Sidebar Layout','pool-services-lite'),
'section' => 'pool_services_lite_woocommerce_section',
'choices' => array(
'Left Sidebar' => __('Left Sidebar','pool-services-lite'),
'Right Sidebar' => __('Right Sidebar','pool-services-lite'),
),
) );
//Products per page
$wp_customize->add_setting('pool_services_lite_products_per_page',array(
'default'=> '9',
'sanitize_callback' => 'pool_services_lite_sanitize_float'
));
$wp_customize->add_control('pool_services_lite_products_per_page',array(
'label' => __('Products Per Page','pool-services-lite'),
'description' => __('Display on shop page','pool-services-lite'),
'input_attrs' => array(
'step' => 1,
'min' => 0,
'max' => 50,
),
'section'=> 'pool_services_lite_woocommerce_section',
'type'=> 'number',
));
//Products per row
$wp_customize->add_setting('pool_services_lite_products_per_row',array(
'default'=> '3',
'sanitize_callback' => 'pool_services_lite_sanitize_choices'
));
$wp_customize->add_control('pool_services_lite_products_per_row',array(
'label' => __('Products Per Row','pool-services-lite'),
'description' => __('Display on shop page','pool-services-lite'),
'choices' => array(
'2' => '2',
'3' => '3',
'4' => '4',
),
'section'=> 'pool_services_lite_woocommerce_section',
'type'=> 'select',
));
//Products padding
$wp_customize->add_setting('pool_services_lite_products_padding_top_bottom',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_products_padding_top_bottom',array(
'label' => __('Products Padding Top Bottom','pool-services-lite'),
'description' => __('Enter a value in pixels. Example:20px','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '10px', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_woocommerce_section',
'type'=> 'text'
));
$wp_customize->add_setting('pool_services_lite_products_padding_left_right',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_products_padding_left_right',array(
'label' => __('Products Padding Left Right','pool-services-lite'),
'description' => __('Enter a value in pixels. Example:20px','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '10px', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_woocommerce_section',
'type'=> 'text'
));
//Products box shadow
$wp_customize->add_setting( 'pool_services_lite_products_box_shadow', array(
'default' => '',
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_sanitize_number_range'
) );
$wp_customize->add_control( 'pool_services_lite_products_box_shadow', array(
'label' => esc_html__( 'Products Box Shadow','pool-services-lite' ),
'section' => 'pool_services_lite_woocommerce_section',
'type' => 'range',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
) );
//Products border radius
$wp_customize->add_setting( 'pool_services_lite_products_border_radius', array(
'default' => '0',
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_sanitize_number_range'
) );
$wp_customize->add_control( 'pool_services_lite_products_border_radius', array(
'label' => esc_html__( 'Products Border Radius','pool-services-lite' ),
'section' => 'pool_services_lite_woocommerce_section',
'type' => 'range',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
) );
$wp_customize->add_setting('pool_services_lite_products_btn_padding_top_bottom',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_products_btn_padding_top_bottom',array(
'label' => __('Products Button Padding Top Bottom','pool-services-lite'),
'description' => __('Enter a value in pixels. Example:20px','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '10px', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_woocommerce_section',
'type'=> 'text'
));
$wp_customize->add_setting('pool_services_lite_products_btn_padding_left_right',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_products_btn_padding_left_right',array(
'label' => __('Products Button Padding Left Right','pool-services-lite'),
'description' => __('Enter a value in pixels. Example:20px','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '10px', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_woocommerce_section',
'type'=> 'text'
));
$wp_customize->add_setting( 'pool_services_lite_products_button_border_radius', array(
'default' => '0',
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_sanitize_number_range'
) );
$wp_customize->add_control( 'pool_services_lite_products_button_border_radius', array(
'label' => esc_html__( 'Products Button Border Radius','pool-services-lite' ),
'section' => 'pool_services_lite_woocommerce_section',
'type' => 'range',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
) );
//Products Sale Badge
$wp_customize->add_setting('pool_services_lite_woocommerce_sale_position',array(
'default' => 'right',
'sanitize_callback' => 'pool_services_lite_sanitize_choices'
));
$wp_customize->add_control('pool_services_lite_woocommerce_sale_position',array(
'type' => 'select',
'label' => __('Sale Badge Position','pool-services-lite'),
'section' => 'pool_services_lite_woocommerce_section',
'choices' => array(
'left' => __('Left','pool-services-lite'),
'right' => __('Right','pool-services-lite'),
),
) );
$wp_customize->add_setting('pool_services_lite_woocommerce_sale_font_size',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('pool_services_lite_woocommerce_sale_font_size',array(
'label' => __('Sale Font Size','pool-services-lite'),
'description' => __('Enter a value in pixels. Example:20px','pool-services-lite'),
'input_attrs' => array(
'placeholder' => __( '10px', 'pool-services-lite' ),
),
'section'=> 'pool_services_lite_woocommerce_section',
'type'=> 'text'
));
$wp_customize->add_setting( 'pool_services_lite_woocommerce_sale_border_radius', array(
'default' => '0',
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_sanitize_number_range'
) );
$wp_customize->add_control( 'pool_services_lite_woocommerce_sale_border_radius', array(
'label' => esc_html__( 'Sale Border Radius','pool-services-lite' ),
'section' => 'pool_services_lite_woocommerce_section',
'type' => 'range',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
) );
// Related Product
$wp_customize->add_setting( 'pool_services_lite_related_product_show_hide',array(
'default' => 1,
'transport' => 'refresh',
'sanitize_callback' => 'pool_services_lite_switch_sanitization'
) );
$wp_customize->add_control( new Pool_Services_Lite_Toggle_Switch_Custom_Control( $wp_customize, 'pool_services_lite_related_product_show_hide',array(
'label' => esc_html__( 'Show / Hide Related product','pool-services-lite' ),
'section' => 'pool_services_lite_woocommerce_section'
)));
// Has to be at the top
$wp_customize->register_panel_type( 'Pool_Services_Lite_WP_Customize_Panel' );
$wp_customize->register_section_type( 'Pool_Services_Lite_WP_Customize_Section' );
}
add_action( 'customize_register', 'pool_services_lite_customize_register' );
load_template( trailingslashit( get_template_directory() ) . '/inc/logo/logo-resizer.php' );
if ( class_exists( 'WP_Customize_Panel' ) ) {
class Pool_Services_Lite_WP_Customize_Panel extends WP_Customize_Panel {
public $panel;
public $type = 'pool_services_lite_panel';
public function json() {
$array = wp_array_slice_assoc( (array) $this, array( 'id', 'description', 'priority', 'type', 'panel', ) );
$array['title'] = html_entity_decode( $this->title, ENT_QUOTES, get_bloginfo( 'charset' ) );
$array['content'] = $this->get_content();
$array['active'] = $this->active();
$array['instanceNumber'] = $this->instance_number;
return $array;
}
}
}
if ( class_exists( 'WP_Customize_Section' ) ) {
class Pool_Services_Lite_WP_Customize_Section extends WP_Customize_Section {
public $section;
public $type = 'pool_services_lite_section';
public function json() {
$array = wp_array_slice_assoc( (array) $this, array( 'id', 'description', 'priority', 'panel', 'type', 'description_hidden', 'section', ) );
$array['title'] = html_entity_decode( $this->title, ENT_QUOTES, get_bloginfo( 'charset' ) );
$array['content'] = $this->get_content();
$array['active'] = $this->active();
$array['instanceNumber'] = $this->instance_number;
if ( $this->panel ) {
$array['customizeAction'] = sprintf( 'Customizing ▸ %s', esc_html( $this->manager->get_panel( $this->panel )->title ) );
} else {
$array['customizeAction'] = 'Customizing';
}
return $array;
}
}
}
// Enqueue our scripts and styles
function pool_services_lite_customize_controls_scripts() {
wp_enqueue_script( 'customizer-controls', get_theme_file_uri( '/assets/js/customizer-controls.js' ), array(), '1.0', true );
}
add_action( 'customize_controls_enqueue_scripts', 'pool_services_lite_customize_controls_scripts' );
/**
* Singleton class for handling the theme's customizer integration.
*
* @since 1.0.0
* @access public
*/
final class Pool_Services_Lite_Customize {
/**
* Returns the instance.
*
* @since 1.0.0
* @access public
* @return object
*/
public static function get_instance() {
static $instance = null;
if ( is_null( $instance ) ) {
$instance = new self;
$instance->setup_actions();
}
return $instance;
}
/**
* Constructor method.
*
* @since 1.0.0
* @access private
* @return void
*/
private function __construct() {}
/**
* Sets up initial actions.
*
* @since 1.0.0
* @access private
* @return void
*/
private function setup_actions() {
// Register panels, sections, settings, controls, and partials.
add_action( 'customize_register', array( $this, 'sections' ) );
// Register scripts and styles for the controls.
add_action( 'customize_controls_enqueue_scripts', array( $this, 'enqueue_control_scripts' ), 0 );
}
/**
* Sets up the customizer sections.
*
* @since 1.0.0
* @access public
* @param object $manager
* @return void
*/
public function sections( $manager ) {
// Load custom sections.
load_template( trailingslashit( get_template_directory() ) . '/inc/section-pro.php' );
// Register custom section types.
$manager->register_section_type( 'Pool_Services_Lite_Customize_Section_Pro' );
// Register sections.
$manager->add_section( new Pool_Services_Lite_Customize_Section_Pro( $manager,'pool_services_lite_upgrade_pro_link', array(
'priority' => 1,
'title' => esc_html__( 'POOL SERVIES PRO', 'pool-services-lite' ),
'pro_text' => esc_html__( 'UPGRADE PRO', 'pool-services-lite' ),
'pro_url' => esc_url('https://www.vwthemes.com/products/swimming-pool-wordpress-theme'),
) ) );
$manager->add_section(new Pool_Services_Lite_Customize_Section_Pro($manager,'pool_services_lite_get_started_link',array(
'priority' => 1,
'title' => esc_html__( 'DOCUMENTATION', 'pool-services-lite' ),
'pro_text' => esc_html__( 'DOCS', 'pool-services-lite' ),
'pro_url' => esc_url('https://preview.vwthemesdemo.com/docs/free-pool-services/'),
)));
}
/**
* Loads theme customizer CSS.
*
* @since 1.0.0
* @access public
* @return void
*/
public function enqueue_control_scripts() {
wp_enqueue_script( 'pool-services-lite-customize-controls', trailingslashit( esc_url(get_template_directory_uri()) ) . '/assets/js/customize-controls.js', array( 'customize-controls' ) );
wp_enqueue_style( 'pool-services-lite-customize-controls', trailingslashit( esc_url(get_template_directory_uri()) ) . '/assets/css/customize-controls.css' );
wp_localize_script(
'pool-services-lite-customize-controls',
'pool_services_lite_customizer_params',
array(
'ajaxurl' => admin_url( 'admin-ajax.php' )
));
}
}
// Doing this customizer thang!
Pool_Services_Lite_Customize::get_instance();