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 Likes
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 Likes
Thank you! That worked perfectly.
3 Likes
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
FYI: We’ve pushed an update to how click counters are implemented. Please use the following updated CSS if you wish to hide it:
a[data-clicks]::after {
display: none;
}
2 Likes