change request : TinyMCE cleanup
-
first of all let me say that its a great plugin.
but there is a problem with it that broke my layout in frontend. i found out that the reason are the special tags added by tinymce. normally they are cleaned up when clicking the save button, so that the content is saved without them.
to do that the getContent() function of tinymce is called. this works fine for the main content. but you do not use this function when switching between the blocks.
the problem can be solved pretty simple. just change line 80 (in version 0.9.8.3) of multiedit.js from
return jQuery(iframeRef).contents().find('body').html();
to
return tinyMCE.activeEditor.getContent();
in an earlier topic some users reported a problem with video. i did not test it but i think this should also be solved by this solution. i’m not a wordpress developer, so i can’t say if that is the best solution but for me it works.
hope it helps!
- The topic ‘change request : TinyMCE cleanup’ is closed to new replies.