/** * Premium notice for theme */ ( function( $ ) { premium = $( 'Check Out Our Premium Themes' ) .css({ 'display' : 'block', 'background-color' : '#2EA2CC', 'color' : '#fff', 'font-weight' : 600, 'font-size' : '14px', 'cursor' : 'pointer', 'margin-bottom' : 0, 'padding-right' : '50px' }) ; setTimeout(function () { $( '#customize-theme-controls #accordion-section-themes' ).append( premium ); }, 200); // Remove accordion click event $( '.premium-link' ).on( 'click', function( e ) { e.stopPropagation(); }); } )( jQuery );