HEX
Server: Apache
System: Linux srv13.cpanelhost.cl 3.10.0-962.3.2.lve1.5.38.el7.x86_64 #1 SMP Thu Jun 18 05:28:41 EDT 2020 x86_64
User: cca63905 (4205)
PHP: 7.3.20
Disabled: NONE
Upload Files
File: /home4/cca63905/.trash/wp-content/themes/accesspress-store/js/customizer.js
/**
 * Theme Customizer enhancements for a better user experience.
 *
 * Contains handlers to make Theme Customizer preview reload changes asynchronously.
 */

( function( $ ) {
	// Site title and description.
	wp.customize( 'blogname', function( value ) {
		value.bind( function( to ) {
			$( '.site-title' ).text( to );
		} );
	} );
	wp.customize( 'blogdescription', function( value ) {
		value.bind( function( to ) {
			$( '.site-description' ).text( to );
		} );
	} );
	// Header text color.
	wp.customize( 'header_textcolor', function( value ) {
		value.bind( function( to ) {
			if ( 'blank' === to ) {
				$( '.site-title, .site-description' ).css( {
					'clip': 'rect(1px, 1px, 1px, 1px)',
					'position': 'absolute'
				} );
			} else {
				$( '.site-title, .site-description' ).css( {
					'clip': 'auto',
					'color': to,
					'position': 'relative'
				} );
			}
		} );
	} );
	    //Breadcrumbs us background image
	    wp.customize( 'breadcrumb_archive_image', function( value ) {
		    value.bind( function( to ) {
		    	$('.entry-header').css('background-image', 'url(' + to + ')' );
		    } );
	    } );

	    wp.customize( 'breadcrumb_single_image', function( value ) {
		    value.bind( function( to ) {
		    	$('.entry-header').css('background-image', 'url(' + to + ')' );
		    } );
	    } );

	    wp.customize( 'breadcrumb_page_image', function( value ) {
		    value.bind( function( to ) {
		    	$('.page_header_wrap').css('background-image', 'url(' + to + ')' );
		    } );
	    } );

	    wp.customize( 'breadcrumb_post_image', function( value ) {
		    value.bind( function( to ) {
		    	$('.page_header_wrap').css('background-image', 'url(' + to + ')' );
		    } );
	    } );

} )( jQuery );