# How to disable Link Click Counters?

**URL:** https://meta.discourse.org/t/how-to-disable-link-click-counters/292791
**Category:** Development
**Tags:** click-counter
**Created:** [January 24, 2024, 4:10pm UTC](https://meta.discourse.org/t/how-to-disable-link-click-counters/292791 "2024-01-24T16:10:28Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![Arkshine](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/arkshine/32/298682_2.png) [@Arkshine](https://meta.discourse.org/u/Arkshine)
#### Post date: [January 24, 2024, 4:25pm UTC](https://meta.discourse.org/t/how-to-disable-link-click-counters/292791/2 "2024-01-24T16:25:06Z")

</div>

To hide them for everyone, you can follow this CSS snippet:

> [@Disable Click Counts?](https://meta.discourse.org/t/disable-click-counts/146622/2):
>
> I don’t believe there’s a setting to disable the count, but you can hide it via CSS. Something like this should work.
> 
> ```plaintext
> .badge.badge-notification.clicks {
> display: none;
> }
> 
> ```

For staff only, you can use this CSS instead:

```css
body:not(.staff) .badge.badge-notification.clicks {
    display: none;
}

```

---

_[View the full topic](https://meta.discourse.org/t/how-to-disable-link-click-counters/292791)._
