Hi,
We’ll include a fix in the next release. If you need to fix it urgently and if you’re comfortable editing the plugin file, open the
twentig/inc/twentytwenty/blog.php file. Go to line 64 and replace:
function twentig_filter_content() {
if ( ( is_home() || is_archive() ) && ! get_theme_mod( 'twentig_blog_content', true ) ) {
by:
function twentig_filter_content() {
if ( class_exists( 'bbPress' ) && is_bbpress() ) {
return;
}
if ( ( is_home() || is_archive() ) && ! get_theme_mod( 'twentig_blog_content', true ) ) {
Hope that helps,
Tom