• Resolved Graydon Schwartz

    (@graydonschwartz)


    Hello, I am having trouble using bbPress with twentig. The forum page /forum/ becomes blank and if I disable your plug-in it appears properly. All I see is ‘Forum’ on the top of the page but no forum tables. Thanks!

Viewing 10 replies - 1 through 10 (of 10 total)
  • Plugin Author Twentig

    (@twentig)

    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

    Thread Starter Graydon Schwartz

    (@graydonschwartz)

    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!

    Plugin Author Twentig

    (@twentig)

    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.

    Thread Starter Graydon Schwartz

    (@graydonschwartz)

    Thank you for testing this configuration! I am looking forward to hearing from you.

    Plugin Author Twentig

    (@twentig)

    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

    Thread Starter Graydon Schwartz

    (@graydonschwartz)

    Thank you, Tom. That worked!

    Thread Starter Graydon Schwartz

    (@graydonschwartz)

    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

    Plugin Author Twentig

    (@twentig)

    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;
        }
    }
    Thread Starter Graydon Schwartz

    (@graydonschwartz)

    Perfect! Thank you, Tom! ?? I left you a review today.

    Plugin Author Twentig

    (@twentig)

    Thanks for the review, it’s much appreciated ??

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘bbPress’ is closed to new replies.