Sirmadsen (@nesdam1981)

Forum Replies Created

Viewing 1 replies (of 1 total)
  • @nesdam1981

    Participant

    I got the editor and this plugin to work by adding a code to my themes functions.php (child theme if you use that)

    function bbp_enable_visual_editor( $args = array() ) {
        $args['tinymce'] = true;
        $args['teeny'] = false;
        return $args;
    }
    add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor' );

    It activates the TinyMCE editor in BBPress.

Viewing 1 replies (of 1 total)