# Prevent staff actions from being considered replies

**URL:** https://meta.discourse.org/t/prevent-staff-actions-from-being-considered-replies/66464
**Category:** Support
**Tags:** small-actions
**Created:** [7월 19, 2017, 9:02오후 UTC](https://meta.discourse.org/t/prevent-staff-actions-from-being-considered-replies/66464 "2017-07-19T21:02:40Z")
**Posts on this page:** 8
**Page:** 1

<div class="post-metadata">

### Author: ![rohmann](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/rohmann/32/120852_2.png) [@rohmann](https://meta.discourse.org/u/rohmann)
#### Post date: [7월 19, 2017, 9:02오후 UTC](https://meta.discourse.org/t/prevent-staff-actions-from-being-considered-replies/66464/1 "2017-07-19T21:02:40Z")

</div>

Anytime a staff action is performed like closing or unlisted a thread, it would seem Discourse records this as a reply. It contributes to the reply count, and the staff member is listed as a participant on the topic.

Is there a way through customization (doesn’t seem possible with settings) to disable this? We’d prefer users to not see what actions are taken, and have made some modifications to hide the status posts. It’s a bit confusing to see that a staff member has participated on the thread when they haven’t added a real reply.

---

<div class="post-metadata">

### Author: ![vinothkannans](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/vinothkannans/32/86465_2.png) [@vinothkannans](https://meta.discourse.org/u/vinothkannans)
#### Post date: [7월 20, 2017, 6:38오전 UTC](https://meta.discourse.org/t/prevent-staff-actions-from-being-considered-replies/66464/2 "2017-07-20T06:38:15Z")

</div>

You can simply delete those staff action replies If you want.

---

<div class="post-metadata">

### Author: ![rohmann](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/rohmann/32/120852_2.png) [@rohmann](https://meta.discourse.org/u/rohmann)
#### Post date: [7월 20, 2017, 9:17오후 UTC](https://meta.discourse.org/t/prevent-staff-actions-from-being-considered-replies/66464/3 "2017-07-20T21:17:59Z")

</div>

Thanks. I was hoping for a way to just get them disabled entirely.

---

<div class="post-metadata">

### Author: ![vinothkannans](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/vinothkannans/32/86465_2.png) [@vinothkannans](https://meta.discourse.org/u/vinothkannans)
#### Post date: [7월 21, 2017, 6:35오전 UTC](https://meta.discourse.org/t/prevent-staff-actions-from-being-considered-replies/66464/4 "2017-07-21T06:35:38Z")

</div>

You can do it via CSS like below

```css
.small-action {
  display: none;
}
.small-action.time-gap {
  display: block;
}

```

And it may give some inconvenience in UX.

---

<div class="post-metadata">

### Author: ![rohmann](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/rohmann/32/120852_2.png) [@rohmann](https://meta.discourse.org/u/rohmann)
#### Post date: [7월 21, 2017, 1:16오후 UTC](https://meta.discourse.org/t/prevent-staff-actions-from-being-considered-replies/66464/5 "2017-07-21T13:16:58Z")

</div>

I’ve been able to hide them, but the problem is that on the topic list view and in the topic map, you see the user who performed the action as a participant (because small action are created as replies) it also makes the reply count go up.

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [7월 5, 2019, 1:09오후 UTC](https://meta.discourse.org/t/prevent-staff-actions-from-being-considered-replies/66464/6 "2019-07-05T13:09:36Z")

</div>



---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [12월 26, 2022, 7:51오전 UTC](https://meta.discourse.org/t/prevent-staff-actions-from-being-considered-replies/66464/7 "2022-12-26T07:51:27Z")

</div>



---

<div class="post-metadata">

### Author: ![Stephen](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/stephen/32/95011_2.png) [@Stephen](https://meta.discourse.org/u/Stephen)
#### Post date: [12월 26, 2022, 2:01오후 UTC](https://meta.discourse.org/t/prevent-staff-actions-from-being-considered-replies/66464/8 "2022-12-26T14:01:16Z")

</div>


