How to disable Link Click Counters?

How can I disable the clicks that are visible corresponding to the link?

Or make it visible only to the staff. It’s distracting the users of the forum as our forum is highly dependent on complying multiple posts and using links to compile them.

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

For staff only, you can use this CSS instead:

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