• Artisantopia

    (@artisantopia)


    I would love to use CKEditor with bbPress V2.3 (WP3.5.1), I’ve almost got it working, but I have one problem. The editor doesn’t show in the forum post entry box by default, even though I have it checked to in Basic Settings. But if I click HTML and then back to Visual the editor displays and works perfectly.

    I have disabled all plugins (besides bbPress), I’ve checked for javascript errors – there were none – and I switched from my custom theme to Twenty Twelve. I tried it in Chrome, Firefox and IE (clearing all caches) but still no luck.

    Is there anyway I can get this to work in bbPress?

    Thankyou

    http://wordpress.org/extend/plugins/ckeditor-for-wordpress/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Tbermudas

    (@tbermudas)

    I have the same problem!

    WP 3.5.1
    Buddy 1.7
    bbpress 2.3

    Hi, I have the same problem.
    Is possible CKEditor to work with bbpress?

    Thanks

    I too have this mostly working, by adding the code below, which enables the visual editor. (see Enable Visual Editor). CKEditor then replaces the ‘visual’ editor. But as mentioned, the user still needs to click on the ‘Visual’ button to activate the CKEditor. I’m still trying to find a way to ‘only’ show the visual (CKEditor) editor.

    function bbp_after_get_the_content_parse_args( $args = array() ) {
    $args[‘tinymce’] = true;
    return $args;
    }
    add_filter( ‘bbp_after_get_the_content_parse_args’, ‘bbp_enable_visual_editor’ );

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘CKEditor with bbPress v2.3’ is closed to new replies.