Skip to:
Content
Pages
Categories
Search
Top
Bottom

Advanced Editor Tools + BBPRESS

  • @kampot888

    Participant

    Advanced Editor Tools

    Advanced Editor Tools + BBPRESS

    I’ve read this topic, but it’s still unresolved, so I’d like to ask a new question here.

    I’m currently installing and testing it, but it won’t load in the BBPRESS text area. Is there a way to set it?

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)
  • You must be logged in to reply to this topic.
Skip to toolbar