Support

Account

Home Forums Backend Issues (wp-admin) No WYSIWYG on category edit page Reply To: No WYSIWYG on category edit page

  • Hi @daniel7912

    Thank you for the question.

    There is a plugin conflict interfering with the setting of the tinyMCE object in your category page. You should check to ensure that you identify the plugin bringing about the conflict by deactivating all other installed plugins and switching to one of the stock Wp themes.

    You can also try making the followng AJAX callback:

    $('.acf_wysiwyg textarea').each(function() {
        tinymce.execCommand('mceAddControl', false, $(this).attr('id'));
    });