• Resolved kaesetoast

    (@kaesetoast)


    Hey there,

    when I create a new taxonomy, the description does not get saved when I hit the create button. Editing existing taxonomies works fine, so for now I can first create the taxonomy and then edit it to add the description. If I switch the editor to html mode, creating taxonomies works fine, as well.

    Somehow wp seems to strip the description when creating taxonomies with visual mode..

    https://www.ads-software.com/extend/plugins/rich-tax-description-editor/

Viewing 10 replies - 1 through 10 (of 10 total)
  • Plugin Author jayarjo

    (@jayarjo)

    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.

    Thread Starter kaesetoast

    (@kaesetoast)

    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.

    Plugin Author jayarjo

    (@jayarjo)

    Try version 1.2.2 and see if you still can repeat the problem

    pavel.simecek

    (@pavelsimecek)

    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.

    Plugin Author jayarjo

    (@jayarjo)

    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?

    pavel.simecek

    (@pavelsimecek)

    What exactly you want me to send you and where?

    Plugin Author jayarjo

    (@jayarjo)

    You said the problem on some site, would be good if I could inspect it myself. If it’s available.

    pavel.simecek

    (@pavelsimecek)

    Like… giving you access to my administration? No, there must be another way ??

    Plugin Author jayarjo

    (@jayarjo)

    Addressed in 1.2.4.

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Description does not get saved when creating a taxonomy’ is closed to new replies.