Wordpress 3.8.1
ACF 4.3.5
Qtranslate 2.5.39
I think I found a bug when you switch language in content editor the content inside the content editor disappear. This only happen when you have ACF Wysiwyg Editor on the same page. Does anyone have a solution for this ? any help will be appreciated.
I think I found the solution.
Delete qtrans_save(switchEditors.pre_wpautop(o.content)); in qtranslate_javascript.php ( line 288 )
and add this:
if (ed.editorId.match(/^qtrans_/)) {
qtrans_save(switchEditors.pre_wpautop(o.content));
}