芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/timucuy.com/wp-content/themes/hestia/assets/js/admin/hestia-elementor-notice.js
/** * Notice for Elementor * * @package Hestia */ /* global hestiaElementorNotice */ jQuery( document ).ready( function () { var style = ''; var dialog = style + '
' + '
' + '
Hestia supports default styling for Elementor widgets
' + '
Do you want to disable Elementors\' default styles and use the theme defaults?
' + '
' + '
No
' + '
Yes
' + '
' + '
' + '
'; jQuery( 'body' ).prepend( dialog ); jQuery( '.hestia-elementor-notice-buttons > a' ).on( 'click', function() { var reply = jQuery( this ).data( 'reply' ); jQuery.ajax( { url: hestiaElementorNotice.ajaxurl, data: { reply: reply, nonce: hestiaElementorNotice.nonce, action: 'hestia_elementor_deactivate_default_styles' }, type: 'post', success: function () { if ( reply === 'yes' ) { parent.location.reload(); } else { jQuery( '.hestia-disable-elementor-styling' ).fadeOut( 500, function() { jQuery( this ).remove(); } ); } } } ); } ); } );