Skip to:
Content
Pages
Categories
Search
Top
Bottom

Removing the Status Bar in Forums

Viewing 3 replies - 1 through 3 (of 3 total)

  • Shane Gowland
    Participant

    @thewebatom

    You can hide it with CSS. Try adding the following code to your theme’s style.css file.

    `.bbp-template-notice.info {
    visibility: hidden;
    height: 0px;
    }`


    mindyjoy
    Participant

    @mindyjoy

    Thank you so much for responding, Shane. I couldn’t get this to work but as I was searching for further explanation, I found another fix. I added this code to the functions.php

    add_filter( ‘bbp_get_single_forum_description’, ‘ja_return_blank’ );

    add_filter( ‘bbp_get_single_topic_description’, ‘ja_return_blank’ );

    function ja_return_blank() {

    return ”;

    }

    for anyone else who may have this problem. Thank you for setting me in the right direction!


    geoffm
    Participant

    @geoffm

    Just for info, I’ve just tried the CSS fix and it worked fine. I’m using the suffusion theme and added it via the custom includes. Many thanks!

Viewing 3 replies - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.