Forums

Join
bbPress Support ForumsPluginsList of Plugins that work on RC3

Info

List of Plugins that work on RC3

  1. What are the working plugins for RC3

  2. @Fanny

    rather, ask, how great is the difference between RC3 and RC2? is it enough for there to be any incompatibility issues...? if the difference is small, than most RC2 plugins should work with RC3.

    in which you might want to look at this thread: -
    http://bbpress.org/forums/topic/list-of-plugins-that-work-on-rc1

    otherwise... add to the list of tested RC3 plugins by contributing to this list...

    RC3 Compatible :-

    - BB-Reputations
    - BB Code Lite
    - Members Online
    - BB-Signatures
    - BBPM

  3. So far, everything that works on RC1 works on RC2 and RC3.

  4. Michael Adams "Allow Images" plugin worked on RC1 but doesn't from RC2 onwards.

  5. Ajaxed Quote works ok con RC3.

  6. Allow Images works if you change this:

    remove_filter( 'pre_post', 'bb_encode_bad' );
    add_filter( 'pre_post', 'allow_images_encode_bad', 9 );
    add_filter( 'pre_post', 'allow_images', 52 );
    add_filter( 'bb_allowed_tags', 'allow_images_allowed_tags' );

    to this

    // remove_filter( 'pre_post', 'encode_bad' );
    // add_filter( 'pre_post', 'allow_images_encode_bad', 9 );
    // add_filter( 'pre_post', 'allow_images', 52 );
    add_filter( 'bb_allowed_tags', 'allow_images_allowed_tags' );
  7. You must log in to post.