[Resolved] Image title on zoom

Home Forums Support [Resolved] Image title on zoom

Home Forums Support Image title on zoom

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1017389
    Harris

    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

    #1017416
    David
    Staff
    Customer Support

    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>
    #1017445
    Harris

    Thanks David

    #1017453
    David
    Staff
    Customer Support

    You’re welcome

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.