The Wayback Machine - https://webcf.waybackmachine.org/web/20140802101514/http://codex.bbpress.org:80/enable-visual-editor/
Skip to:
Content
Pages
Categories
Search
Top
Bottom

Enable Visual Editor

Codex Home → Enable Visual Editor

In bbPress 2.3.1, WordPress’s visual editor was defaulted to off. To turn it back on, try this code snippet in a plugin or your theme’s functions.php file:

1
2
3
4
5
function bbp_enable_visual_editor( $args = array() ) {
    $args['tinymce'] = true;
    return $args;
}
add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor' );