Are you trying on fresh wp (what’s the version btw)? Can you try on one if you are not? It might be a conflict between plugins.
Hi jayarjo,
thanks for your answer. Yes, I am using a fresh WP installation. I just updated it from the WP Git repo this morning, it’s version 3.5.2. It is the only Plugin I have in use right now.
For what it’s worth, when I create a new term on 3.5.2, the rich description saves just fine.
Try version 1.2.2 and see if you still can repeat the problem
It happened to me too with WordPress 3.6.1 and plugin version 1.2 (have not tried 1.2.2 yet). It was caused by the strange behavior of TinyMCE that did not copy its content into a hidden textarea before submitting.
I have fixed that by registering event listener on a submit button like this:
wp_enqueue_script( 'tinymce-trigger-save-fix', get_template_directory_uri() . '/js/tinymce-trigger-save-fix.js', array(), false, true );
where tinymce-trigger-save-fix.js contains a event handler registration:
jQuery('#submit').on('mousedown', function() {
tinyMCE.triggerSave();
});
This is a more general problem, not just a bug in this plugin. It affected all plugins that allowed creation of tinyMCE editor in taxonomies.
Maybe there was a JS error of some kind on the page above that code? It has to be something specific to your environment ’cause it doesn’t happen here for example. Would you be so kind to let me actually inspect the page with the problem?
What exactly you want me to send you and where?
You said the problem on some site, would be good if I could inspect it myself. If it’s available.
Like… giving you access to my administration? No, there must be another way π