Love the plugin, specially now that I have it enabled on my bbPress plugin as well. Not sure if this is exactly the right way to do it, but it works for me.
Add the following code to your functions.php;
1 2 3 4 5 6 | function t4a_bbp_shortcodes( $content, $reply_id ) { return codecolorer_highlight( $content ); } add_filter('bbp_get_reply_content', 't4a_bbp_shortcodes', 10, 2); add_filter('bbp_get_topic_content', 't4a_bbp_shortcodes', 10, 2); |