add_section( 'theme_info', array( 'title' => __( 'Demo & Documentation' , 'beauty-salon-lite' ), 'priority' => 6, ) ); /** Important Links */ $wp_customize->add_setting( 'theme_info_theme', array( 'default' => '', 'sanitize_callback' => 'wp_kses_post', ) ); $theme_info = '
'; $theme_info .= sprintf( __( 'Demo Link: %1$sClick here.%2$s', 'beauty-salon-lite' ), '', '' ); $theme_info .= '
'; $theme_info .= sprintf( __( 'Documentation Link: %1$sClick here.%2$s', 'beauty-salon-lite' ), '', '' ); $theme_info .= '
'; $wp_customize->add_control( new Blossom_Spa_Note_Control( $wp_customize, 'theme_info_theme', array( 'section' => 'theme_info', 'description' => $theme_info ) ) ); /** Site Title Font */ $wp_customize->add_setting( 'site_title_font', array( 'default' => array( 'font-family' => 'Marcellus', 'variant' => 'regular', ), 'sanitize_callback' => array( 'Blossom_Spa_Fonts', 'sanitize_typography' ) ) ); $wp_customize->add_control( new Blossom_Spa_Typography_Control( $wp_customize, 'site_title_font', array( 'label' => __( 'Site Title Font', 'beauty-salon-lite' ), 'description' => __( 'Site title and tagline font.', 'beauty-salon-lite' ), 'section' => 'title_tagline', 'priority' => 60, ) ) ); /** Site Title Font Size*/ $wp_customize->add_setting( 'site_title_font_size', array( 'default' => 30, 'sanitize_callback' => 'blossom_spa_sanitize_number_absint' ) ); $wp_customize->add_control( new Blossom_Spa_Slider_Control( $wp_customize, 'site_title_font_size', array( 'section' => 'title_tagline', 'label' => __( 'Site Title Font Size', 'beauty-salon-lite' ), 'description' => __( 'Change the font size of your site title.', 'beauty-salon-lite' ), 'priority' => 65, 'choices' => array( 'min' => 10, 'max' => 200, 'step' => 1, ) ) ) ); /** Appearance Settings */ $wp_customize->add_panel( 'appearance_settings', array( 'priority' => 25, 'capability' => 'edit_theme_options', 'title' => __( 'Appearance Settings', 'beauty-salon-lite' ), 'description' => __( 'Customize Color, Typography & Background Image', 'beauty-salon-lite' ), ) ); /** Typography Settings */ $wp_customize->add_section( 'typography_settings', array( 'title' => __( 'Typography Settings', 'beauty-salon-lite' ), 'priority' => 20, 'panel' => 'appearance_settings' ) ); /** Primary Font */ $wp_customize->add_setting( 'primary_font', array( 'default' => 'DM Sans', 'sanitize_callback' => 'blossom_spa_sanitize_select' ) ); $wp_customize->add_control( new Blossom_Spa_Select_Control( $wp_customize, 'primary_font', array( 'label' => __( 'Primary Font', 'beauty-salon-lite' ), 'description' => __( 'Primary font of the site.', 'beauty-salon-lite' ), 'section' => 'typography_settings', 'choices' => blossom_spa_get_all_fonts(), ) ) ); /** Secondary Font */ $wp_customize->add_setting( 'secondary_font', array( 'default' => 'Prata', 'sanitize_callback' => 'blossom_spa_sanitize_select' ) ); $wp_customize->add_control( new Blossom_Spa_Select_Control( $wp_customize, 'secondary_font', array( 'label' => __( 'Secondary Font', 'beauty-salon-lite' ), 'description' => __( 'Secondary font of the site.', 'beauty-salon-lite' ), 'section' => 'typography_settings', 'choices' => blossom_spa_get_all_fonts(), ) ) ); /** Font Size*/ $wp_customize->add_setting( 'font_size', array( 'default' => 18, 'sanitize_callback' => 'blossom_spa_sanitize_number_absint' ) ); $wp_customize->add_control( new Blossom_Spa_Slider_Control( $wp_customize, 'font_size', array( 'section' => 'typography_settings', 'label' => __( 'Font Size', 'beauty-salon-lite' ), 'description' => __( 'Change the font size of your site.', 'beauty-salon-lite' ), 'choices' => array( 'min' => 10, 'max' => 50, 'step' => 1, ) ) ) ); $wp_customize->add_setting( 'ed_localgoogle_fonts', array( 'default' => false, 'sanitize_callback' => 'blossom_spa_sanitize_checkbox', ) ); $wp_customize->add_control( new Blossom_Spa_Toggle_Control( $wp_customize, 'ed_localgoogle_fonts', array( 'section' => 'typography_settings', 'label' => __( 'Load Google Fonts Locally', 'beauty-salon-lite' ), 'description' => __( 'Enable to load google fonts from your own server instead from google\'s CDN. This solves privacy concerns with Google\'s CDN and their sometimes less-than-transparent policies.', 'beauty-salon-lite' ) ) ) ); $wp_customize->add_setting( 'ed_preload_local_fonts', array( 'default' => false, 'sanitize_callback' => 'blossom_spa_sanitize_checkbox', ) ); $wp_customize->add_control( new Blossom_Spa_Toggle_Control( $wp_customize, 'ed_preload_local_fonts', array( 'section' => 'typography_settings', 'label' => __( 'Preload Local Fonts', 'beauty-salon-lite' ), 'description' => __( 'Preloading Google fonts will speed up your website speed.', 'beauty-salon-lite' ), 'active_callback' => 'blossom_spa_ed_localgoogle_fonts' ) ) ); ob_start(); ?> add_setting( 'ed_flush_local_fonts', array( 'sanitize_callback' => 'wp_kses_post', ) ); $wp_customize->add_control( 'ed_flush_local_fonts', array( 'label' => __( 'Flush Local Fonts Cache', 'beauty-salon-lite' ), 'section' => 'typography_settings', 'description' => $beauty_salon_lite_flush_button, 'type' => 'hidden', 'active_callback' => 'blossom_spa_ed_localgoogle_fonts' ) ); /** Move Background Image section to appearance panel */ $wp_customize->get_section( 'colors' )->panel = 'appearance_settings'; $wp_customize->get_section( 'colors' )->priority = 10; $wp_customize->get_section( 'background_image' )->panel = 'appearance_settings'; $wp_customize->get_section( 'background_image' )->priority = 15; /** Header Layout */ $wp_customize->add_section( 'header_layout', array( 'title' => __( 'Header Layout', 'beauty-salon-lite' ), 'panel' => 'layout_settings', 'priority' => 10, ) ); $wp_customize->add_setting( 'header_layout_option', array( 'default' => 'three', 'sanitize_callback' => 'blossom_spa_sanitize_radio' ) ); $wp_customize->add_control( new Blossom_Spa_Radio_Image_Control( $wp_customize, 'header_layout_option', array( 'section' => 'header_layout', 'label' => __( 'Header Layout', 'beauty-salon-lite' ), 'description' => __( 'This is the layout for header.', 'beauty-salon-lite' ), 'choices' => array( 'one' => get_stylesheet_directory_uri() . '/images/one.jpg', 'three' => get_stylesheet_directory_uri() . '/images/three.jpg', ) ) ) ); /** Shopping Cart */ $wp_customize->add_setting( 'ed_shopping_cart', array( 'default' => true, 'sanitize_callback' => 'blossom_spa_sanitize_checkbox' ) ); $wp_customize->add_control( new Blossom_Spa_Toggle_Control( $wp_customize, 'ed_shopping_cart', array( 'section' => 'header_settings', 'label' => __( 'Shopping Cart', 'beauty-salon-lite' ), 'description' => __( 'Enable to show Shopping cart in the header.', 'beauty-salon-lite' ), 'active_callback' => 'blossom_spa_is_woocommerce_activated' ) ) ); } add_action( 'customize_register', 'beauty_salon_lite_customize_register', 99 ); /** * Header Start */ function blossom_spa_header(){ $header_layout = get_theme_mod( 'header_layout_option', 'three' ); if( $header_layout == 'one' ) { ?>