The HTML output on a page seems to be semantically incorrect ids need to unique, the HTML output that is being rendered now all the images are getting an id of`elevate_zoom--lens_zoom_gallery`. If you change the id to a class this would solve the issue.

It seems to be an easy enough fix in the template file called `elevate-image-zoom-template.html.twig` change,
<img id="{{ elevate_class }}" src="{{ images.images_url }}" data-zoom-image="{{ images.zoom_image_url }}"/>
to
<img class="{{ elevate_class }}" src="{{ images.images_url }}" data-zoom-image="{{ images.zoom_image_url }}"/>

Comments

Purencool created an issue. See original summary.

purencool’s picture

Issue summary: View changes
shruthi_shetty’s picture

Status: Active » Needs review
StatusFileSize
new1006 bytes

Semantically incorrect corrected.

  • keshav.k committed 430ab902 on 8.x-1.x
    Issue #3034224 by Shruthi Shetty M: Semantically incorrect
    
keshavv’s picture

Status: Needs review » Fixed
keshavv’s picture

Status: Fixed » Closed (fixed)