Skip to:
Content
Pages
Categories
Search
Top
Bottom

How to remove somethings from my forum

  • @netfux

    Participant

    Hi, in my bbpress I have some main forums redirected to other pages. In the main page, I can see in those forum titles that it shows up (in spanish) “0 debates”, “0 mensajes” and “Sin Hilos”. Since those forums are not set to reply, or create topics etc… I don’t want that info showing up in those exact forum titles. Is there a way to achieve that?

    You can see the forum here. I have that problem with the first four forums.

    Thank’s for your help.

Viewing 5 replies - 1 through 5 (of 5 total)
  • @netfux

    Participant

    That’s Spam right?

    @netfux

    Participant

    Can somebody ask my question please? I need help on this matter

    @netweb

    Keymaster

    Add some custom CSS to your theme:

    Eg. For the ‘Notícias’ forum

    #bbp-forum-709 .bbp-forum-topic-count, 
    #bbp-forum-709 .bbp-forum-reply-count {
    display: none;
    }

    Yes, that was spam, now deleted

    @netfux

    Participant

    Thank’s Thank’s Thank’s! You did it… I put the following code in custom theme css:

    #bbp-forum-709 .bbp-forum-topic-count,
    #bbp-forum-709 .bbp-forum-reply-count,
    #bbp-forum-709 p.bbp-topic-meta {
    display: none;
    }
    #bbp-forum-1085 .bbp-forum-topic-count,
    #bbp-forum-1085 .bbp-forum-reply-count,
    #bbp-forum-1085 p.bbp-topic-meta {
    display: none;
    }

    #bbp-forum-700 .bbp-forum-topic-count,
    #bbp-forum-700 .bbp-forum-reply-count,
    #bbp-forum-700 p.bbp-topic-meta {
    display: none;
    }
    #bbp-forum-702 .bbp-forum-topic-count,
    #bbp-forum-702 .bbp-forum-reply-count,
    #bbp-forum-702 p.bbp-topic-meta {
    display: none;
    }
    #bbp-forum-1032 .bbp-forum-topic-count,
    #bbp-forum-1032 .bbp-forum-reply-count,
    #bbp-forum-1032 p.bbp-topic-meta {
    display: none;
    }
    #bbp-forum-1045 .bbp-forum-topic-count,
    #bbp-forum-1045 .bbp-forum-reply-count,
    #bbp-forum-1045 p.bbp-topic-meta {
    display: none;
    }
    ———

    I guess there is a cleaner way to put it, but now it’s working. I also needed the thumbnail and info above dissapear so I found the p.bbp-topic-meta code was it…

    The only thing that I need now is to know how can I center those forum titles at the center of the page, also center the height between lines…

    Thank’s

    @netweb

    Keymaster

    Cool, with some extra CSS in those same lines above you should get pretty close to what you are after 🙂

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