Can you please share the page ?
Hi, can anyone saw the issue ?
Hi @sebastianpq,
I did see this issue. It is a common behavior in iOS.
https://css-tricks.com/annoying-mobile-double-tap-link-issue/
You might see it for any link which has different styling when it is hovered over.
I might have to add hacky javascript to get over this which I think is not necessary.
You will see the same with any plugin/link. Please let me know how do you want to proceed, I can suggest a small JS script which you can paste on your site.
Thanks,
Aakash
Do you have the Js script?, because i tried the css version and didn’t work, besides, broke some stuff on the site.
Please try the script below
<script>
jQuery(document).ready(function() {
jQuery(“.socializer a”).on(“click touchend”, function(e) {
var el = jQuery(this);
var link = el.attr(“href”);
window.location = link;
});
});
</script>
Thanks,
Aakash