Archived topic
Image title on zoom
3 replies · Started by Harris on September 24, 2019
Viewing posts 1–4 of 4
Hello,
Not sure if its a WP or a theme issue.
How can I disable showing the image name, when zooming in an image (magnifying glass) in woo single product page?
Thanks
Harris
Hi there,
although not good for SEO, the simplest way is to not add a Title on the image.
Or you can try this javascript:
<script>
jQuery(document).ready(function($) {
$('img[title]').each(function () {
$(this).attr('title','');
});
});
</script>
Thanks David
You're welcome
This archived topic is closed to new replies.