@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: –
https://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
So far, everything that works on RC1 works on RC2 and RC3.
Michael Adams “Allow Images” plugin worked on RC1 but doesn’t from RC2 onwards.
Ajaxed Quote works ok con RC3.
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' );