get_setting( 'wheeloflife_color' )->default = '#fafbfd'; } } add_action( 'customize_register', 'blossom_consulting_overide_values', 999 ); /** * Dynamic Styles */ function blossom_consulting_dynamic_css(){ $primary_font = get_theme_mod( 'primary_font', 'Nunito Sans' ); $primary_fonts = blossom_coach_get_fonts( $primary_font, 'regular' ); $secondary_font = get_theme_mod( 'secondary_font', 'Nunito' ); $secondary_fonts = blossom_coach_get_fonts( $secondary_font, 'regular' ); $site_title_font = get_theme_mod( 'site_title_font', array( 'font-family'=>'Nunito', 'variant'=>'700' ) ); $site_title_fonts = blossom_coach_get_fonts( $site_title_font['font-family'], $site_title_font['variant'] ); $site_title_font_size = get_theme_mod( 'site_title_font_size', 25 ); $wheeloflife_color = get_theme_mod( 'wheeloflife_color', '#fafbfd' ); $custom_css = ''; $custom_css .= ' :root { --primary-font: ' . esc_html( $primary_fonts['font'] ) . '; --secondary-font: ' . esc_html( $secondary_fonts['font'] ) . '; } .site-title, .site-title-wrap .site-title{ font-size : ' . absint( $site_title_font_size ) . 'px; font-family : ' . esc_html( $site_title_fonts['font'] ) . '; font-weight : ' . esc_html( $site_title_fonts['weight'] ) . '; font-style : ' . esc_html( $site_title_fonts['style'] ) . '; } section#wheeloflife_section { background-color: ' . blossom_coach_sanitize_hex_color( $wheeloflife_color ) . '; }'; wp_add_inline_style( 'blossom-coach', $custom_css ); } add_action( 'wp_enqueue_scripts', 'blossom_consulting_dynamic_css', 99 ); /** * Returns Home Sections */ function blossom_coach_get_home_sections(){ $ed_banner = get_theme_mod( 'ed_banner_section', 'slider_banner' ); $sections = array( 'client' => array( 'sidebar' => 'client' ), 'about' => array( 'sidebar' => 'about' ), 'cta' => array( 'sidebar' => 'cta' ), 'testimonial' => array( 'sidebar' => 'testimonial' ), 'service' => array( 'sidebar' => 'service' ), 'wheeloflife' => array( 'wsection' => 'wheeloflife' ), 'blog' => array( 'bsection' => 'blog' ), 'simple-cta' => array( 'sidebar' => 'simple-cta' ), 'shop' => array( 'section' => 'shop' ), 'contact' => array( 'sidebar' => 'contact' ), ); $enabled_section = array(); if( $ed_banner == 'static_nl_banner' || $ed_banner == 'slider_banner' || $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, $v['sidebar'] ); }else{ if( array_key_exists( 'bsection', $v ) && get_theme_mod( 'ed_blog_section', true ) ) array_push( $enabled_section, $v['bsection'] ); if( array_key_exists( 'wsection', $v ) && get_theme_mod( 'ed_wheeloflife_section', false ) ) array_push( $enabled_section, $v['wsection'] ); } } return apply_filters( 'blossom_coach_home_sections', $enabled_section ); } /** * Footer Bottom */ function blossom_coach_footer_bottom(){ ?>