Hi,
I’ve installed bbPress with Twentig, but I can’t replicate the issue. When I visit the ‘/forums/’ page on my install, I see all the forum tables. If possible, would you please share your website’s URL?
Thanks,
Tom
Hi,
I’ve installed bbPress with Twentig, but I can’t replicate the issue. When I visit the ‘/forums/’ page on my install, I see all the forum tables. If possible, would you please share your website’s URL?
Thanks,
Tom
Hi Tom, here take a look at: https://mavicguides.com/forums/
I tried making the page myself, adding the shortcode and same result. Thanks!
Thanks for the URL. I can replicate the issue with the Twenty Twenty theme (I used the Twenty Twenty-One theme in my previous test).
The issue happens when the ‘Customizer > Twentig Options > Blog > Posts Page > Display post content’ option is unchecked.
We’re looking to fix this issue. I’ll keep you updated.
Thank you for testing this configuration! I am looking forward to hearing from you.
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
Thank you, Tom. That worked!
Hi Tom,
Check it out here: https://mavicguides.com/forums/
Is it possible to remove white space below header? On the other pages I have used “Twentig – No title” template and look great. Am I missing something here? Thanks! 🙂
Graydon
To remove the space on this page, you can add the following CSS code inside Customizer > Additional CSS:
.forum-archive.bbpress .post-inner {
padding-top: 0;
}
.forum-archive.bbpress .entry-content > .alignfull:first-child {
margin-top: -5rem;
}
@media (min-width: 700px) {
.forum-archive.bbpress .entry-content > .alignfull:first-child {
margin-top: -8rem;
}
}
Perfect! Thank you, Tom! 🙂 I left you a review today.
Thanks for the review, it’s much appreciated 🙂