Skip to:
Content
Pages
Categories
Search
Top
Bottom

Disabling the option number of votes in the forum

  • @danishsard

    Participant

    Hello, maybe it would be worth to add voices to the settings panel in the bbpress options. Most people do not want to use it, why impose it. At home I turned it off by cutting out in the code of the page https://infomiasto.eu/forum/tematy/rozmowy/ but it is a solution that you need to repeat when updating, and maybe it would be such a setting

Viewing 17 replies - 1 through 17 (of 17 total)
  • @robin-w

    Moderator

    Most people do not want to use it, why impose it.

    not sure on what basis you form that opinion, and you can always amend the templates, which is what they are there for

    @danishsard

    Participant

    Hardly any other forums have anything like that in their structures, only bbpress has something like this exposed

    @maaritludia

    Participant

    Hi @danishsard, How did you do the disabling of the votes column? Could I have instructions?

    @robin-w

    Moderator

    put this in the custom css section of your theme

    #bbpress-forums  li.bbp-forum-reply-count {
    	display: none;
    }

    @maaritludia

    Participant

    Hi, it did not help. Actually, I’m not sure if I put in in the right place.. The site is https://xxxparadise.fi/keskustelupalsta/foorumi/keskusteluaiheet/

    @robin-w

    Moderator

    where did you put it ?

    @maaritludia

    Participant

    @robin-w
    I put it into the left sidebar (I have this in Finnish , so I dont know the right terms in English, sorry).
    I have there a section “custom CSS” and I put it in the beginning.

    .fl-page-header-fixed {
    background-color:#000000!important;
    }

    #bbpress-forums li.bbp-forum-reply-count {
    display: none;
    }

    /* Large Devices, Wide Screens */

    @media
    only screen and (max-width : 1200px) {

    }

    /* Medium Devices, Desktops */

    @media
    only screen and (max-width : 992px) {

    }

    @maaritludia

    Participant

    It’n Appearance > Customize > Custom(?) CSS.

    ps. I’m also using Beaver Builder on the site.

    @robin-w

    Moderator

    ok try

    #bbpress-forums  li.bbp-forum-reply-count {
    	display: none !important;
    }

    @maaritludia

    Participant

    Sorry, it did not work either..

    @robin-w

    Moderator

    ok install this and put the code in the custom css section.

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>custom css

    @maaritludia

    Participant

    Done, but did not work..

    @robin-w

    Moderator

    is your site public ?

    @maaritludia

    Participant

    @robin-w

    Moderator

    try any/all of these

    li.bbp-forum-reply-count {
    	display : none !important;
    }
    li.bbp-forum-topic-count {
    	display : none !important;
    }
    li.bbp-topic-reply-count {
    	display : none !important;
    }
    li.bbp-topic-voice-count {
    	display : none !important;
    }

    @maaritludia

    Participant

    Thanks @robin-w, last two helped to get rid off things I wanted! Happy!

    @robin-w

    Moderator

    great – glad you are fixed

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