Comment désactiver les compteurs de clics sur les liens ?

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;
}
6 « J'aime »