First of all - love the extension. I can't believe it's the only Social Media share extension I could find!
I've just installed in 3.3.9 and it looks to work fine.
One small point is that the WhatsApp link doesn't work unless on a mobile, as I don't think you can use WhatsApp on a laptop/desktop. Much as I hate mod'ing any code, I have made a quick tweak to shareon.css, to hide the WhatsApp share button if not on a mobile. My CSS isn't great, so apologies if this isn't the right way to do this - or indeed not the right place to do it. But it works for me anyway
Code: Select all
@media only screen and (min-width: 600px), only screen and (min-device-width: 600px) {
.whatsapp-icon {
display: none;
}
}