Skip to:
Content
Pages
Categories
Search
Top
Bottom

Reply threading issue

  • @omj-1

    Participant

    When I first created the forum I enabled Reply threading, once the forum went live, I didn’t care for it. I disabled Reply threading & now every post looks weird…I’ve tried a few repairs in tools/forum, but none have fixed. Here is a couple screenshots…

    w/ Reply threading on:

    w/ Reply threading off:

Viewing 6 replies - 1 through 6 (of 6 total)
  • @robkk

    Moderator

    Interesting it would usually be having reply threading on that could cause a css like issue, but yours is the opposite.

    Can you link to your site to a topic with reply threading off so I can see what could be causing the issue. It could be some CSS related issue.

    You can test to see if this still happens with another theme activated too.

    @omj-1

    Participant

    @robkk I had turned reply threading back on, just so the posts look normal, but I will turn it back off so you can check…thanks!

    http://www.badboyzromz.com/topic/introduce-yourself/

    @robkk

    Moderator

    @omj-1

    This is the CSS causing the issue.

    #bbpress-forums .bbp-body div.bbp-reply-content {
        clear: both;
        margin: 10px;
        padding: 0;
    }

    The reason why when reply threading is enabled fixes the issue is because the list .bbp-body self closes and makes the above CSS not work.

    Here is the ticket about the reply threading markup bug.

    https://bbpress.trac.wordpress.org/ticket/2757

    You can use this custom CSS to fix the issue.

    #bbpress-forums .bbp-body div.bbp-reply-content {
        clear: none;
    }

    @omj-1

    Participant

    @robkk thx Rob! I checked my style.css in my child theme & found that code…I think I copied/pasted from somewhere…I changed it & it fixed it! thx again!!!

    @robkk

    Moderator

    @omj-1

    You can completely remove the code and I think it will fix some other issues being present with margins and padding.

    @omj-1

    Participant

    @robkk cool, I’ll do that….thx again

    *edit* yes, it fixed some other issues…thx!

Viewing 6 replies - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.
Skip to toolbar