I have found a great post which solves this issue,
The issue is on qtranslate_javascript.php line 225
Replace
var waitForTinyMCE = window.setInterval(function() {
if(typeof(tinyMCE) !== 'undefined' && typeof(tinyMCE.get2) == 'function' && tinyMCE.get2('content')!=undefined) {
content=jQuery('#content').val();
tinyMCE.get2('content').remove();
jQuery('#content').val(content);
window.clearInterval(waitForTinyMCE);
}
}, 250);
WITH: Only change the 250
to 500
🙂 this should solve the problem…
var waitForTinyMCE = window.setInterval(function() {
if(typeof(tinyMCE) !== 'undefined' && typeof(tinyMCE.get2) == 'function' && tinyMCE.get2('content')!=undefined) {
content=jQuery('#content').val();
tinyMCE.get2('content').remove();
jQuery('#content').val(content);
window.clearInterval(waitForTinyMCE);
}
}, 500);