Example: https://wordpress.org/extend/plugins/comment-form-quicktags
plugin works on normal WordPress posts comment forms but doesn’t work on bbPress2’s reply forms.
Should be an easy adaptation. Would be awesome of someone to port that over.
I was able to get Comment Form Quicktags showing on bbP’s reply form by adding add_filter('bbp_get_reply_content', array(&$this, 'detect_start'));
but not on the topic content form. I tried:
add_filter('bbp_topic_content', array(&$this, 'detect_start'));
add_filter('bbp_get_topic_content', array(&$this, 'detect_start'));
What am I doing wrong?
Afraid I won’t have much time to test this in the coming days. If someone wants to help collaborate on that one, have at it.