UPDATE: I found this article (http://stephanieleary.com/2010/02/using-shortcodes-everywhere/) which gave me this code:
add_filter( 'term_description', 'shortcode_unautop');
add_filter( 'term_description', 'do_shortcode' );
So now the shortcodes appear in the description fields, but not in the popup next to the category title. How do I enable that?
Hello,
On my website I am basically using custom HTML code not shortcodes in the category description. I will keep your suggestion in mind for future update.
OK, I got that to work, but it also required this to allow HTML to be used in the Category Description area:
remove_filter('pre_term_description', 'wp_filter_kses');
So, I’m not sure what it would take to enable shortcodes to work inside that popup, but getting them to work in the description field is easy enough. But for now, at least I have it working consistently. I just have to create the HTML by using the Bootstrap shortcodes, then copy the resulting HTML and paste it into the category description field. Supporting shortcodes would make it all quite a bit easier.
Nevertheless. Thanks for a really useful theme.