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' ) { ?> array( 'sidebar' => 'service' ), 'about' => array( 'sidebar' => 'about' ), 'service_two' => array( 'sidebar' => 'service-two' ), 'testimonial' => array( 'sidebar' => 'testimonial' ), 'cta_two' => array( 'sidebar' => 'cta-two' ), 'team' => array( 'sidebar' => 'team' ), 'blog' => array( 'section' => 'blog' ) ); $enabled_section = array(); if( $ed_banner == 'static_banner' ) array_push( $enabled_section, 'banner' ); foreach( $sections as $k => $v ){ if( array_key_exists( 'sidebar', $v ) ){ if( is_active_sidebar( $v['sidebar'] ) ) array_push( $enabled_section, $k ); }else{ if( get_theme_mod( 'ed_' . $v['section'] . '_section', true ) ) array_push( $enabled_section, $v['section'] ); } } if( $disable_all_section ) { $enabled_section = array(); } return apply_filters( 'blossom_spa_home_sections', $enabled_section ); } /** * Woocommerce Cart Count * @link https://isabelcastillo.com/woocommerce-cart-icon-count-theme-header */ function beauty_salon_lite_wc_cart_count(){ $count = WC()->cart->cart_contents_count; ?>
cart->cart_contents_count; ?> 'Marcellus', 'variant'=>'regular' ) ); $ig_site_title_font = blossom_spa_is_google_font( $site_title_font['font-family'] ); /* Translators: If there are characters in your language that are not * supported by respective fonts, translate this to 'off'. Do not translate * into your own language. */ $primary = _x( 'on', 'Primary Font: on or off', 'beauty-salon-lite' ); $secondary = _x( 'on', 'Secondary Font: on or off', 'beauty-salon-lite' ); $site_title = _x( 'on', 'Site Title Font: on or off', 'beauty-salon-lite' ); if ( 'off' !== $primary || 'off' !== $secondary || 'off' !== $site_title ) { $font_families = array(); if ( 'off' !== $primary && $ig_primary_font ) { $primary_variant = blossom_spa_check_varient( $primary_font, 'regular', true ); if( $primary_variant ){ $primary_var = ':' . $primary_variant; }else{ $primary_var = ''; } $font_families[] = $primary_font . $primary_var; } if ( 'off' !== $secondary && $ig_secondary_font ) { $secondary_variant = blossom_spa_check_varient( $secondary_font, 'regular', true ); if( $secondary_variant ){ $secondary_var = ':' . $secondary_variant; }else{ $secondary_var = ''; } $font_families[] = $secondary_font . $secondary_var; } if ( 'off' !== $site_title && $ig_site_title_font ) { if( ! empty( $site_title_font['variant'] ) ){ $site_title_var = ':' . blossom_spa_check_varient( $site_title_font['font-family'], $site_title_font['variant'] ); }else{ $site_title_var = ''; } $font_families[] = $site_title_font['font-family'] . $site_title_var; } $font_families = array_diff( array_unique( $font_families ), array('') ); $query_args = array( 'family' => urlencode( implode( '|', $font_families ) ), ); $fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' ); } if( get_theme_mod( 'ed_localgoogle_fonts', false ) ) { $fonts_url = blossom_spa_get_webfont_url( add_query_arg( $query_args, 'https://fonts.googleapis.com/css' ) ); } return esc_url_raw( $fonts_url ); } function beauty_salon_lite_dynamic_css(){ $primary_font = get_theme_mod( 'primary_font', 'DM Sans' ); $primary_fonts = blossom_spa_get_fonts( $primary_font, 'regular' ); $secondary_font = get_theme_mod( 'secondary_font', 'Prata' ); $secondary_fonts = blossom_spa_get_fonts( $secondary_font, 'regular' ); $font_size = get_theme_mod( 'font_size', 18 ); $site_title_font = get_theme_mod( 'site_title_font', array( 'font-family'=>'Marcellus', 'variant'=>'regular' ) ); $site_title_fonts = blossom_spa_get_fonts( $site_title_font['font-family'], $site_title_font['variant'] ); $site_title_font_size = get_theme_mod( 'site_title_font_size', 30 ); $primary_color = '#F59B90'; echo ""; } add_action( 'wp_head', 'beauty_salon_lite_dynamic_css', 100 ); /** * Footer Bottom */ function blossom_spa_footer_bottom(){ ?>