A small and quick update for your lunch hour break (if you’re on the eastern seaboard I suppose) about bbPress’ 2.3.1 update that sports a number of bug fixes that you may have run into on your own personal installation.
The 3 known bugs that were squashed are as follows:
- Moderators can once again see trashed topics and replies
- Posting preformatted code is improved over previous versions
- Correct cache group deleted for custom posts queries
John James Jacoby also mentions an important change as well that you might want to take note of:
Also in bbPress 2.3.1, we’ve disabled the use of WordPress’s visual editor (aka TinyMCE.) The HTML editor is still available, and works extremely well. If you want to enable the visual editor again, we’ve added a code snippet to the codex that will turn it back on for you.
The code snippet is here just for your convenience:
[code]
function bbp_enable_visual_editor( $args = array() ) {
$args[‘tinymce’] = true;
return $args;
}
add_filter( ‘bbp_after_get_the_content_parse_args’, ‘bbp_enable_visual_editor’ );
[/code]
In bbPress 2.3.1, WordPress’s visual editor was turned default, as it was causing issues when switching between Visual and HTML modes in some configurations. To turn it back on, try this code snippet in a plugin or your theme’s functions.php file.
Thanks for the update guys! Perhaps you’ll find some time today to update your bbPress installs or at least over the weekend. Rock it out!
No Comments