Forum Replies Created
-
Thanks – although Jerusaelm was not in the WordPress bad words list I had many others – clearing the Comment Blacklist seemed to do the trick though!
Also does not work when Stop Spammer Registrations 5.9.3 is disabled.
Well… in fact I had to do the opposite and force TinyMCE into “teeny” mode to make bbPress 2.2.3 with WP 3.5 and Ultimate TinyMCE 4.0.3 to work. The TinyMCE toolbar forced the entire editor table to be wider then the content area of my theme and it was getting hidden behind the right-hand-sidebar. This could be a theme incompatibility, but I’m guessing some issue with this combination of plugins and WP version.
At any rate I used the code in this thread to the opposite effect (I put it in my theme’s function.php file, although a plugin is the proper thing to do).
`
function marconf_bbpress_mceallow( $args = array() ) {
$args[‘teeny’] = true;
return $args;
}
add_filter( ‘bbp_after_get_the_content_parse_args’, ‘marconf_bbpress_mceallow’ );
`In reply to: Allowing inline images uploads in posts?@RaphaelJeger I want to know!! 🙂
https://wordpress.org/extend/plugins/gd-bbpress-attachments/ works but doesn’t help with inline attachments, and the regular WordPress tinyMCE settings are not applied to the bbPress editor.