Hello,
After recent update to bbPress 2.6.8 and then to 2.6.9, toolbar disappeared. Despite “Add toolbar & buttons to textareas to help with HTML formatting” is set. It’s too hard for forum users to edit HTML manually. The problem reproduces in Chrome, Edge and Firefox.
Screenshot is here https://imgur.com/a/McIo6p0
Is it possible to fix?
this is a known bug.
either
if( !function_exists( 'bbpress_browser_supports_js' ) ){
function bbpress_browser_supports_js() {
echo '<script>document.body.classList.remove("no-js");</script>';
}
add_action( 'wp_footer', 'bbpress_browser_supports_js' );
}
Put this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
Code Snippets
or
install
bbp style pack
which has the fix built in
Add added the JS code and it helped.
I tried bbp style pack, but it’s too comprehensive and complex for my needs.
Thank you.
Hello, I use the code above with Snippets plugin, but it doesn’t work now. 🙁
Here is my recored video: https://www.loom.com/share/774ad802d9884113b22982c502519b17
Do you know how to fix it?
in snippet type the snippet is php not javascript.