version 4.13.0

This commit is contained in:
2021-12-07 11:08:05 +00:00
commit cb26d2c0c4
1285 changed files with 254735 additions and 0 deletions

View File

@ -0,0 +1,5 @@
jQuery( function ( $ ) {
$( '.learndash-wrapper .ld-focus header.et-l.et-l--header, .learndash-wrapper .ld-focus footer.et-l.et-l--footer' ).css( {
'display': 'none',
} );
} );

View File

@ -0,0 +1,58 @@
(function($) {
$(() => {
$('body').on('click', '.js-wpml-translate-link', function() {
const $this = $(this);
const url = $this.attr('href');
if (! url) {
return;
}
// Bail early if current layout has translation.
if (! url.startsWith('post-new')) {
return;
}
// Find translation language ID and trid.
const langIds = url.match(/lang\=(\w+)&/);
const langId = langIds && 'undefined' !== typeof langIds[1] ? langIds[1] : '';
const trids = url.match(/trid\=(\w+)&/);
const trid = trids && 'undefined' !== typeof trids[1] ? trids[1] : '';
if (! langId || ! trid) {
return false;
}
const thisElement = $this.html();
$this.html('<span class="spinner et-builder-wpml-compat-spinner" style="visibility: visible; margin: 0;"></span>');
$.ajax({
type: 'POST',
url: et_builder_wpml_compat_options.ajaxurl,
dataType: 'json',
data: {
action: 'et_builder_wpml_translate_layout',
nonce: et_builder_wpml_compat_options.nonces.et_builder_wpml_translate_layout,
translation_trid: trid,
translation_lang_id: langId,
},
})
.done(result => {
if ('undefined' !== typeof result) {
if (result.success && 'undefined' !== typeof result.data) {
window.location.href = _.unescape(result.data.edit_layout_link);
}
}
$this.html(thisElement);
})
.fail(data => {
console.log(data.responseText);
$this.html(thisElement);
});
return false;
});
});
})(jQuery);