Hi Dankicity
I’ll try and answer your questions:
1. I’m assuming you mean the description column is the description box below the parent category tag when you add a new category rather than in the list of categories.
I did initially hide this box and replace it with the new tinymce enable box but i had to update the plugin because when I hide the box you lost the ability to set parent categories. It appears that they are very closely connected.
Having the ability to set parent categories is more important than hiding the description box. You can still fill in the box and when you go into the edit category page then the new tinymce box will be prepopulated ready for formatting.
2. The plugin does not support custom categories in relation to filtering out the default box. I use jquery on named pages to hide the box and I’ll never be able to guess everyone’s custom taxonomy types ??
I will look at trying to make it dynamic at some stage in the future in the mean time you can add some code to your functions file to run your own filters for your own custom post types. The instructions below is cut and pasted from a comment on the plugin home page at: https://ypraise.com/2012/01/wordpress-plugin-categorytinymce/
Either add to your own themes functions file (best to prevent it being over written by any updates I do to the plugin) or add to the categorytinymce file (After line 122) the following:
function hide_XXXX_description() {
global $current_screen;
if ( $current_screen->id == 'edit-XXXX' ) {
?>
jQuery(function($) {
$('select#parent').closest('tr.form-field').hide(); $('textarea#description, textarea#tag-description').closest('tr.form-field').hide();
});
<?php
}
}
The XXXX will depend on your taxonomy name so using countries as a taxonomy type you would probable name your filter:
function hide_countries_description()
your current screen id can be found by going to the edit page for your custom category type and looking in the url. You will see a variable called taxonomy=XXXX
This is what you want to use as the edit id in the
if ( $current_screen->id == ‘edit-XXXX’ )
so it could look something like;
if ( $current_screen->id == ‘edit-post_country’ )
or
if ( $current_screen->id == ‘edit-country’ )
I’ve not been able to replicate the issue with data-mce-bogus=”1″ but I’ll try and play around with it a bit over the weekend and try and find out whats causing it. May be it’s a theme issue?
Regarding your suggestion. I’ll take a look when I get the chance to put together an options page. This plugin was really put together in a hurry when wp went to 3.3 because I needed something simple and fast to replace other plugins. I can not offer any time line on it I’m afraid as I’m pretty chockablock with work and in the progress of emigrating so time is not really available to sit down and work on a freebie.
Thanks for the message and I hope I’ve answered you questions.
Kevin