Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
spawns
/
wp-content1
/
themes
/
Divi
/
includes
/
builder
/
plugin-compat
/
scripts
:
sitepress-multilingual-cms.js
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
(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);