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 Me gusta
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 Me gusta
Thank you! That worked perfectly.
3 Me gusta
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
Para tu información: Hemos implementado una actualización en la forma en que se implementan los contadores de clics. Utiliza el siguiente CSS actualizado si deseas ocultarlo:
a[data-clicks]::after {
display: none;
}
3 Me gusta