Does anyone have any input on this?
I’m no expert, so take this for what it’s worth and research further …
Here’s the code I found that seems to work. Have not fully tested. Would appreciate any feedback from someone with more experience.
In form-reply.php
Find bbp_the_content( array( ‘context’ => ‘reply’ … and change line to
` ‘reply’, ‘quicktags’ => false ) ); ?>`
In form-topic.php
Find bbp_the_content( array( ‘context’ => ‘topic’ … and change line to
` ‘topic’, ‘quicktags’ => false ) ); ?>`
Use a filter instead of hacking bbPress core, that way you don’t lose your work when a new update comes out.
In this case look at the `bbp_get_the_content()` function in `includes/common/template-tags.php`. You can use `bbp_parse_args()` to filter all the default values 🙂