On some web store product pages, the image will load in a pop-up when the image is clicked product images section.
If you want to remove the popup, add the following JavaScript snippet to your web store’s Custom Tags:
<script> $( document ).ready(function() { // block any elements from being clicked until page $("body").append( "<div style='top:0;position:fixed;width:100%;height:100%;z-index:100000' id='blocker'></div>" ); }); document.onreadystatechange = function() { if (document.readyState == "complete") { // once complete, remove the cboxElement class removeCboxElement(); // remove div blocking elements from being clicked $("#blocker").hide(); } } function removeCboxElement() { $(".lightbox-group").each(function() { $(this).removeClass("cboxElement"); }); } </script>