We have updated the download in the product resources forum to include more details on how to get the product zoom images to work with the latest version of the cart:
In productdetail.ascx goto line 30 and uncomment the following
<script type="text/javascript">
var jqzoomOptions = {
zoomWidth: 300,
zoomHeight: 300,
title: false
}
jQuery(function() {
jQuery(".jqzoom").unbind();
jQuery(".jqzoom").jqzoom(jqzoomOptions);
});
function SwapImage1() {
var setImage1 = document.getElementById("<%=hdPic1.ClientID%>").value;
document.getElementById("<%=Image1.ClientID%>").src = setImage1;
var setZoomImage1 = document.getElementById("<%=hdZoomPic1.ClientID%>").value;
document.getElementById("<%=myMainImage.ClientID%>").href = setZoomImage1;
//jQuery(".jqzoom").unbind();
//jQuery(".jqzoom").jqzoom(jqzoomOptions);
return false;
}
You need to take out the // in front of the lines of javascript to get it to work properly. After doing that, it should work perfectly.
Thanks,
Christian