0.2% can be an OK conversion rate for some things.
I've always wondered if anyone used sharing buttons on news sites and blogs
11–20 of 107 posts
Re: I've always wondered if anyone used sharing buttons on news sites and blogs
#12I've added a button that just triggers `navigator.share()`[1]. I know most users do the copy-paste dance, but I find this is a good middle ground. Adding functionality for my users, but not adding special social media share buttons. [1]: https://developer.mozilla.org/en-US/docs/Web/API/Navigator/s...
I thought about using navigator.share myself, but decided to go with the basic "Copy URL" button instead, as navigator.share is pretty useless on desktops and not supported across browsers on phones either (Android's Webview being the big one for my use case).
Re: I've always wondered if anyone used sharing buttons on news sites and blogs
#13> The share buttons got clicked 14,078 times. That’s a 0.21% usage rate, which works out to about 1 in 476 visitors. In other words, people not only click share buttons, but do it quite often?
Re: I've always wondered if anyone used sharing buttons on news sites and blogs
#14> The share buttons got clicked 14,078 times. That’s a 0.21% usage rate, which works out to about 1 in 476 visitors. In other words, people not only click share buttons, but do it quite often?
Re: I've always wondered if anyone used sharing buttons on news sites and blogs
#15I use share buttons all the time on social platforms, and apps like Amazon that don't have any other way of deep linking. Lot's of people use apps that don't expose a link, share buttons are great and even better when they use standards like your OS's share functionality.
Re: I've always wondered if anyone used sharing buttons on news sites and blogs
#16Of course no one wants to use a feature that creates a huge link and throws in a bunch of disingenuous text.
Re: I've always wondered if anyone used sharing buttons on news sites and blogs
#170.2% can be an OK conversion rate for some things.
Anyway just interesting data points for what "0.2% conversion" looked like in my experience.
Re: I've always wondered if anyone used sharing buttons on news sites and blogs
#18> The share buttons got clicked 14,078 times. That’s a 0.21% usage rate, which works out to about 1 in 476 visitors. In other words, people not only click share buttons, but do it quite often?
Yeah I find this article hilarious. Especially since maybe less than 1 in 10 visitors will actually want to share the article? So 1 in 476 is actually pretty decent usage.
Re: I've always wondered if anyone used sharing buttons on news sites and blogs
#19That's actually not low at all, and much higher than I would have expected for government website pages.
Not to mention the _actual_ social sharing of mentioning pages to people you know who need the information on those pages.
Re: I've always wondered if anyone used sharing buttons on news sites and blogs
#20I've added a button that just triggers `navigator.share()`[1]. I know most users do the copy-paste dance, but I find this is a good middle ground. Adding functionality for my users, but not adding special social media share buttons. [1]: https://developer.mozilla.org/en-US/docs/Web/API/Navigator/s...