How to hide clicks count badge which next to the image link

I created a clickable image with a link, but I do not want the click counter to be displayed nearby. Can I remove it?

1 Like

You can hide it via below custom CSS

img + .badge-notification.clicks {
  display: none;
}
6 Likes