Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author natekinkead

    (@natekinkead)

    @billakosgr , if I understand you correctly, you are wanting to show the voting on the Forum index of Topics, but don’t want it to show on the single Topic page on the top Topic as well as the Replies?

    This should do it for you…

    add_action('init', function() {
        remove_action('bbp_theme_before_topic_content', 'bbp_voting_buttons');
        remove_action('bbp_theme_before_reply_content', 'bbp_voting_buttons');
    }, 11);
    Thread Starter billakosgr

    (@billakosgr)

    I used css to remove it before I saw your reply and it worked but I assume your solution would work too. Thanks!!

    Plugin Author natekinkead

    (@natekinkead)

    Great! Yeah, either way works.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Dont show voting inside the thread’ is closed to new replies.