Désactiver le comptage des clics ?

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.

2 « J'aime »

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

.badge.badge-notification.clicks {
    display: none;
}
13 « J'aime »

Thank you! That worked perfectly.

3 « J'aime »

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

Pour information : nous avons mis à jour l’implémentation des compteurs de clics. Veuillez utiliser le CSS mis à jour suivant si vous souhaitez le masquer :

a[data-clicks]::after {
     display: none;
}
3 « J'aime »