![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/hessa.corals.io/wp-content/themes/kicker/theme-options/ |
/** * Live-update changed settings in real time in the Customizer preview. */ ( function( $ ) { "use strict"; var $style = $( '#kicker-customizer-inline-css' ), api = wp.customize; // Prepare inline styles in the preview window if ( $style.length === 0 ) { var style_container = '<' + 'style type="text/css" id="kicker-customizer-inline-css" />', $theme_css = $( '#kicker-custom-inline-css' ); if ($theme_css.length === 0) { $theme_css = $( '#kicker-custom-css' ); } if ($theme_css.length === 0) { $( 'head' ).append( style_container ); } else { $theme_css.after( style_container ); } $style = $( '#kicker-customizer-inline-css' ); } // Refresh preview without page reload when controls are changed api.bind( 'preview-ready', function() { // Show color scheme helpers if need if ( api( 'color_scheme_helpers' )() > 0 ) { add_color_scheme_helpers(); } // Change css when color scheme or separate color controls are changed api.preview.bind( 'refresh-color-scheme-css', function( css ) { $style.html( css ); } ); // Any other controls are changed api.preview.bind( 'refresh-other-controls', function( obj ) { var id = obj.id, val = obj.value; if (id.indexOf( 'body_style' ) === 0) { change_class( $( 'body' ), 'body_style_', val ); $( window ).trigger( 'resize' ); } else if (id == 'color_scheme') { change_class( $( 'body,html' ), 'scheme_', val ); if ( api( 'color_scheme_helpers' )() > 0 ) { remove_color_scheme_helpers(); add_color_scheme_helpers(); } } else if (id == 'header_scheme') { change_class( $( '.top_panel' ), 'scheme_', val ); if ( api( 'color_scheme_helpers' )() > 0 ) { remove_color_scheme_helpers(); add_color_scheme_helpers(); } } else if (id == 'menu_scheme') { change_class( $( '.menu_side_wrap, .menu_mobile' ), 'scheme_', val ); if ( api( 'color_scheme_helpers' )() > 0 ) { remove_color_scheme_helpers(); add_color_scheme_helpers(); } } else if (id == 'sidebar_scheme') { change_class( $( '.sidebar' ), 'scheme_', val ); if ( api( 'color_scheme_helpers' )() > 0 ) { remove_color_scheme_helpers(); add_color_scheme_helpers(); } } else if (id == 'footer_scheme') { change_class( $( '.footer_wrap, .footer_widgets_wrap, .footer_copyright_wrap' ), 'scheme_', val ); if ( api( 'color_scheme_helpers' )() > 0 ) { remove_color_scheme_helpers(); add_color_scheme_helpers(); } } else if (id == 'logo_zoom') { $( '.custom-logo-link, .sc_layouts_logo' ).css( 'font-size', val + 'em' ); } else if (id == 'header_zoom') { $( '.sc_layouts_title_title' ).css( 'font-size', val + 'em' ); } else if (id.indexOf( 'expand_content' ) === 0) { $( 'body' ).removeClass( 'narrow_content normal_content expand_content' ); if ( $( 'body' ).hasClass( 'sidebar_hide' ) ) { $( 'body' ).addClass( val + '_content' ); } } else if (id.indexOf( 'remove_margins' ) === 0) { if (val == 1) { $( 'body' ).addClass( 'remove_margins' ); } else { $( 'body' ).removeClass( 'remove_margins' ); } } else if (id.indexOf( 'sidebar_position' ) === 0) { if ($( 'body' ).hasClass( 'sidebar_show' )) { $( 'body' ).removeClass( 'sidebar_left sidebar_right' ).addClass( 'sidebar_' + val ); } } else if (id == 'blogname') { $( '.sc_layouts_logo .logo_text' ).html( kicker_prepare_macros( val ) ); } else if (id == 'blogdescription') { $( '.sc_layouts_logo .logo_slogan' ).html( kicker_prepare_macros( val ) ); } else if (id == 'copyright') { $( '.copyright_text' ).html( kicker_prepare_macros( val ) ); } else if (id == 'color_scheme_helpers') { if ( val > 0 ) { add_color_scheme_helpers(); } else { remove_color_scheme_helpers(); } } else if ($( 'body' ).hasClass( 'frontpage' )) { if (id == 'front_page_bg_image') { $( 'body' ).css( 'backgroundImage', 'url(' + val + ')' ); } else if (id.indexOf( 'front_page_' ) == 0 && (id.substr( -7 ) == '_scheme' || id.substr( -9 ) == '_bg_color' || id.substr( -14 ) == '_bg_color_type' || id.substr( -8 ) == '_bg_mask')) { var section = id.replace( 'front_page_', '' ) .replace( '_scheme', '' ) .replace( '_bg_color_type', '' ) .replace( '_bg_color', '' ) .replace( '_bg_mask', '' ); var scheme = id.indexOf( '_scheme' ) > 0 ? val : api( 'front_page_' + section + '_scheme' )(); if ( id.indexOf( '_scheme' ) > 0 ) { change_class( $( '.front_page_section_' + section ), 'scheme_', val ); } var mask = id.indexOf( '_bg_mask' ) > 0 ? val : api( 'front_page_' + section + '_bg_mask' )(); var color_type = id.indexOf( '_bg_color_type' ) > 0 ? val : api( 'front_page_' + section + '_bg_color_type' )(); var color = id.indexOf( '_bg_color' ) > 0 ? val : api( 'front_page_' + section + '_bg_color' )(); if (color_type == 'none') { color = ''; } else if (color_type == 'scheme_bg_color') { if ( scheme == 'inherit' ) scheme = api( 'color_scheme' )(); color = typeof kicker_color_schemes[scheme] != 'undefined' ? kicker_color_schemes[scheme]['colors']['bg_color'] : ''; } $( '.front_page_section_' + section + '_inner' ).css( 'background-color', color == '' ? 'transparent' : ( mask == 1 ? color : kicker_hex2rgba( color, mask ) ) ); } else if (id.indexOf( 'front_page_' ) == 0 && id.substr( -9 ) == '_paddings') { var section = id.replace( 'front_page_', '' ).replace( '_paddings', '' ); change_class( $( '.front_page_section_' + section ), 'front_page_section_paddings_', val ); } else if (id.indexOf( 'front_page_title_button' ) == 0 && id.substr( -8 ) == '_caption') { $( '.' + id.replace( '_caption', '' ) ).addClass( 'front_page_block_' + (val ? 'filled' : 'empty') ).html( val ); } else if (id.indexOf( 'front_page_' ) == 0 && id.substr( -8 ) == '_caption') { $( '.' + id.replace( 'front_page_', 'front_page_section_' ) ).addClass( 'front_page_block_' + (val ? 'filled' : 'empty') ).html( val ); } else if (id.indexOf( 'front_page_' ) == 0 && id.substr( -12 ) == '_description') { $( '.' + id.replace( 'front_page_', 'front_page_section_' ) ).addClass( 'front_page_block_' + (val ? 'filled' : 'empty') ).html( val ); } else if (id.indexOf( 'front_page_' ) == 0 && id.substr( -8 ) == '_content') { $( '.' + id.replace( 'front_page_', 'front_page_section_' ) ).addClass( 'front_page_block_' + (val ? 'filled' : 'empty') ).html( val ); } else if (id.indexOf( 'front_page_' ) == 0 && id.substr( -11 ) == '_fullheight') { $( '.' + id.replace( 'front_page_', 'front_page_section_' ).replace( '_fullheight', '_inner' ) ) .height( 'auto' ) .toggleClass( 'kicker-full-height sc_layouts_flex sc_layouts_columns_middle', val ); $( window ).trigger( 'resize' ); } } } ); // Change class, started with 'prefix', on the new value function change_class(obj, prefix, val) { if (obj.length === 0) { return; } obj.each( function() { var c = $( this ).attr( 'class' ).split( ' ' ); var found = false; for (var i = 0; i < c.length; i++) { if (c[i].indexOf( prefix ) === 0) { if (val !== '' && val != 'inherit') { c[i] = prefix + val; } else { delete c[i]; } found = true; break; } } if ( ! found) { c.push( prefix + val ); } $( this ).attr( 'class', c.join( ' ' ) ); } ); } // Add color scheme helpers to each block with class "scheme_xxx" function add_color_scheme_helpers() { $( '[class*="scheme_"]:not(html)' ).each( function() { var $self = $( this ), id = $self.attr( 'id' ), classes = $self.attr( 'class' ), tag = $self.get(0).tagName.toLowerCase(), scheme = kicker_get_class_by_prefix( classes, 'scheme_' ).replace( 'scheme_', '' ); $self.append( '<div class="kicker_customizer_scheme_helper">' + '<span class="kicker_customizer_scheme_helper_name">' + tag + ( id ? '#' + id : ( classes ? '.' + classes.split(' ')[0] : '' ) ) + ' = ' + scheme + '</span>' + '</div>' ); } ); } // Remove color scheme helpers function remove_color_scheme_helpers() { $( '.kicker_customizer_scheme_helper' ).remove(); } } ); } )( jQuery );