# Post Reaction choices visable

**URL:** https://meta.discourse.org/t/post-reaction-choices-visable/391753
**Category:** Support
**Tags:** reactions
**Created:** [December 19, 2025, 2:33pm UTC](https://meta.discourse.org/t/post-reaction-choices-visable/391753 "2025-12-19T14:33:16Z")
**Posts on this page:** 10
**Page:** 1

<div class="post-metadata">

### Author: ![Mark\_Gaudet](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/mark_gaudet/32/536610_2.png) [@Mark\_Gaudet](https://meta.discourse.org/u/Mark_Gaudet)
#### Post date: [December 19, 2025, 2:33pm UTC](https://meta.discourse.org/t/post-reaction-choices-visable/391753/1 "2025-12-19T14:33:16Z")

</div>

Is there a way to have post reaction choice visible instead of having to hover?

---

<div class="post-metadata">

### Author: ![isaac](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/isaac/32/235758_2.png) [@isaac](https://meta.discourse.org/u/isaac)
#### Post date: [December 19, 2025, 2:35pm UTC](https://meta.discourse.org/t/post-reaction-choices-visable/391753/2 "2025-12-19T14:35:40Z")

</div>

Hey @Mark_Gaudet,

Could you provide a little more context on your use case?

Having the reaction options opened by default would make for a bad reading experience -

 ![Screenshot 2025-12-19 at 8.34.53 AM](https://global.discourse-cdn.com/meta/original/4X/2/a/e/2ae701488823d41be3f9d3be132b7770d8168e16.png)

---

<div class="post-metadata">

### Author: ![Mark\_Gaudet](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/mark_gaudet/32/536610_2.png) [@Mark\_Gaudet](https://meta.discourse.org/u/Mark_Gaudet)
#### Post date: [December 19, 2025, 2:37pm UTC](https://meta.discourse.org/t/post-reaction-choices-visable/391753/3 "2025-12-19T14:37:57Z")

</div>

We’re wanting to have 3 choices for posts. Heart, thumbs up and thumbs down. Basically as a way to get members feedback. Was this post helpful? Thumbs up emoji. That kind of thing

---

<div class="post-metadata">

### Author: ![Mark\_Gaudet](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/mark_gaudet/32/536610_2.png) [@Mark\_Gaudet](https://meta.discourse.org/u/Mark_Gaudet)
#### Post date: [December 19, 2025, 2:39pm UTC](https://meta.discourse.org/t/post-reaction-choices-visable/391753/4 "2025-12-19T14:39:08Z")

</div>

But if you have to hover you wouldn’t necessarily know there’s an option. Like a facebook option if you will. Hopefully I’m making sense.

---

<div class="post-metadata">

### Author: ![isaac](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/isaac/32/235758_2.png) [@isaac](https://meta.discourse.org/u/isaac)
#### Post date: [December 19, 2025, 2:44pm UTC](https://meta.discourse.org/t/post-reaction-choices-visable/391753/5 "2025-12-19T14:44:01Z")

</div>

I think I am following. Would you be hoping to see the additional buttons (thumps up, etc) in this section:

 ![Screenshot 2025-12-19 at 8.40.48 AM](https://global.discourse-cdn.com/meta/original/4X/8/c/0/8c0fb1dec105495b454142f23aaa88f673e7b6af.png)

versus using the reactions plugin for selecting a reaction?

---

<div class="post-metadata">

### Author: ![Mark\_Gaudet](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/mark_gaudet/32/536610_2.png) [@Mark\_Gaudet](https://meta.discourse.org/u/Mark_Gaudet)
#### Post date: [December 19, 2025, 2:45pm UTC](https://meta.discourse.org/t/post-reaction-choices-visable/391753/6 "2025-12-19T14:45:32Z")

</div>

YES!! Exactly thank you @isaac btw thank you for the quick reply. I was worried this wouldn’t get seen until after the holidays 🤣

---

<div class="post-metadata">

### Author: ![isaac](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/isaac/32/235758_2.png) [@isaac](https://meta.discourse.org/u/isaac)
#### Post date: [December 19, 2025, 2:48pm UTC](https://meta.discourse.org/t/post-reaction-choices-visable/391753/7 "2025-12-19T14:48:22Z")

</div>

Happy to help 🙂

You will need a custom solution to add this functionality. I have scanned for a existing solution on Meta but nothing came up (for me at least). If development is not your strength, you can always post on #Marketplace, there are a lot of excellent developers here!

---

<div class="post-metadata">

### Author: ![Mark\_Gaudet](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/mark_gaudet/32/536610_2.png) [@Mark\_Gaudet](https://meta.discourse.org/u/Mark_Gaudet)
#### Post date: [December 19, 2025, 2:49pm UTC](https://meta.discourse.org/t/post-reaction-choices-visable/391753/8 "2025-12-19T14:49:57Z")

</div>

I’m not that great of a developer but one of my co-workers is a whiz. Can you provide instructions and I can pass it on?

---

<div class="post-metadata">

### Author: ![isaac](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/isaac/32/235758_2.png) [@isaac](https://meta.discourse.org/u/isaac)
#### Post date: [December 19, 2025, 2:53pm UTC](https://meta.discourse.org/t/post-reaction-choices-visable/391753/9 "2025-12-19T14:53:43Z")

</div>

I would start by looking at the `post-menu-buttons` value transformer:

```gjs
    api.registerValueTransformer(
      "post-menu-buttons",
      ({ value: dag, context: { post } }) => {
        if (post.firstPost) {
          dag.add("your-button", ButtonComponent);
        }
      }
    );

```

🙂

---

<div class="post-metadata">

### Author: ![Mark\_Gaudet](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/mark_gaudet/32/536610_2.png) [@Mark\_Gaudet](https://meta.discourse.org/u/Mark_Gaudet)
#### Post date: [December 19, 2025, 3:12pm UTC](https://meta.discourse.org/t/post-reaction-choices-visable/391753/10 "2025-12-19T15:12:36Z")

</div>

sorry where would i find that? nvm all set
