Disable second Zoom (detail zoom) for Prestige theme

Hi everyone, I am using the Prestige theme, which is fantastic and beautifully designed. Some of my product photos are not high enough quality for a “full zoom”. I would like to be able to click once on an image to open it full screen BUT stop it from zoom further (so NOT the last screen shot below). Is this possible. I ahve looked for solutions and cannot find any,

Thank you in advance,

Tim.

Click and open full screen..

but NOT the following…

I have fixed this myself by tracking down the original code. If this is useful for anyone the variable to change (in Prestige) is theme.js line 1610, highlighted below,

source: https://photoswipe.com/adjusting-zoom-level/

getDoubleTapZoom: function getDoubleTapZoom(isMouseClick, item) {
if (isMouseClick) {
return 1;
} else {
return item.initialZoomLevel < 0.7 ? 1 : 1.33;
}
},

You can udpate this code in the end of code in the file “section-main-product.css” file under the assets . This would help without doing any changes in the primary core files.

.product__media-toggle {display: none !important;}
.product__modal-opener .product__media-icon {display: none !important;}

accept if this also work for you