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
You can hide it via below custom CSS
img + .badge-notification.clicks {
display: none;
}
「いいね!」 7