Hi Enri! I’m afraid that there isn’t a built in option to hide the share counter. However, there is a workaround that might do the trick if you’re comfortable working with some code.
You could prevent the Javascript that generates the share counts from loading by adding the following filter to a functionality plugin or to your theme’s functions.php file:
add_filter( 'sharing_js', '__return_false' );
However, I would only recommend this method if you don’t use the “Email” sharing button, as this will also remove some functions that it requires.
If you do use the Email sharing button, you’ll want to copy the Email button code and enqueue it with your own custom Javascript file.