# Disable Click Counts?

**URL:** https://meta.discourse.org/t/disable-click-counts/146622
**Category:** Development
**Tags:** click-counter
**Created:** [April 2, 2020, 8:51pm UTC](https://meta.discourse.org/t/disable-click-counts/146622 "2020-04-02T20:51:06Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![csandstedt](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/csandstedt/32/170079_2.png) [@csandstedt](https://meta.discourse.org/u/csandstedt)
#### Post date: [April 2, 2020, 8:51pm UTC](https://meta.discourse.org/t/disable-click-counts/146622/1 "2020-04-02T20:51:06Z")

</div>

Is there a setting to disable to click counts to external links? I’m not sure I want everyone to see how many clicks we are sending to another site.

---

<div class="post-metadata">

### Author: ![jomaxro](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jomaxro/32/126216_2.png) [@jomaxro](https://meta.discourse.org/u/jomaxro)
#### Post date: [April 2, 2020, 8:55pm UTC](https://meta.discourse.org/t/disable-click-counts/146622/2 "2020-04-02T20:55:29Z")

</div>

I don’t believe there’s a setting to disable the count, but you can hide it via CSS. Something like this should work.

```css
.badge.badge-notification.clicks {
    display: none;
}

```

---

<div class="post-metadata">

### Author: ![csandstedt](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/csandstedt/32/170079_2.png) [@csandstedt](https://meta.discourse.org/u/csandstedt)
#### Post date: [April 2, 2020, 9:36pm UTC](https://meta.discourse.org/t/disable-click-counts/146622/3 "2020-04-02T21:36:20Z")

</div>

Thank you! That worked perfectly.

---

<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: [May 2, 2020, 9:36pm UTC](https://meta.discourse.org/t/disable-click-counts/146622/4 "2020-05-02T21:36:31Z")

</div>

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.

---

<div class="post-metadata">

### Author: ![keegan](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/keegan/32/383395_2.png) [@keegan](https://meta.discourse.org/u/keegan)
#### Post date: [October 31, 2024, 9:20pm UTC](https://meta.discourse.org/t/disable-click-counts/146622/5 "2024-10-31T21:20:44Z")

</div>

FYI: We’ve pushed an update to how click counters are implemented. Please use the following updated CSS if you wish to hide it:

```scss
a[data-clicks]::after {
     display: none;
}

```
