• I have tried getting help through the bbPress forum, but I haven’t gotten an answer and its been weeks now. Hopefully, someone here can still help me with my problem.

    I have a issue regarding the Visual Editor within the forum page. I would like the visual editor within the forum edit page to be enabled so that I can give a image/text introduction to the forum. I have tried to install suggested plugins like “TinyMCE Advanced” and others but none of them directly solve the problem I am having. Example of what I am looking for:

    What I would like to be on the page:
    https://postimg.org/image/y52i13nup/

    WordPress: Version 4.5.2 running Untold Stories theme.
    bbPress: Version 2.5.9
    website forum page: https://www.curlswithattitude.com/forums/introductions

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter brooklynbrookie

    (@brooklynbrookie)

    bump

    Hello,
    AFAIK, you have to put these lines of code in the functions.php file in order to activate the visual editor correctly (used it in conjonction with tinymce advanced).

    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’ );

    This plugin should also do the trick (used it before and worked to enable the tinymce embedded with bbpress)
    https://www.ads-software.com/plugins/bbp-toolkit/

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: bbPress] Visual Editor’ is closed to new replies.