Forums
-
- Forum
- Posts
-
- Installation
- 28,436
- Troubleshooting
- 62,525
- Themes
- 10,431
- Plugins
- 15,342
- Requests & Feedback
- 14,964
- Showcase
- 3,256
-
The bad quoting issue is fixed, it was caused by the move to the new esc_html()
function from WordPress.
Here’s the quick fix. In bb-includes/functions.bb-formatting.php
go to line 83 and replace:
$text = esc_html( $text );
with:
$text = wp_specialchars( $text, ENT_NOQUOTES );