# Discourse Topic Voting

**URL:** https://meta.discourse.org/t/discourse-topic-voting/40121
**Category:** Plugin
**Tags:** official, topic-voting, included-in-core
**Created:** [February 24, 2016, 8:59pm UTC](https://meta.discourse.org/t/discourse-topic-voting/40121 "2016-02-24T20:59:09Z")
**Posts on this page:** 1
**Showing post:** 311

<div class="post-metadata">

### Author: ![Moin](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/moin/32/554653_2.png) [@Moin](https://meta.discourse.org/u/Moin)
#### Post date: [September 13, 2025, 5:26pm UTC](https://meta.discourse.org/t/discourse-topic-voting/40121/311 "2025-09-13T17:26:31Z")

</div>

I think it’s because the reaction plugin is enabled. The code from the topic voting plugin that hides the like button doesn’t hide the reaction button.

> <https://github.com/discourse/discourse/blob/ed6beea336f0f75fbfa40a778cd35730573a55bb/plugins/discourse-topic-voting/assets/stylesheets/common/topic-voting.scss#L67-L72>

You’d need CSS that hides the reaction button and existing reactions. Something like

```css
.topic-post.voting-post {
  .discourse-reactions-actions,
  .discourse-reactions-actions-button-shim {
    display: none;
  }
}

```

---

_[View the full topic](https://meta.discourse.org/t/discourse-topic-voting/40121)._
