Na stronie produktu w szablonie nie działa mi tak jak należy jqzoom. Problem polega na tym, że po najechaniu na zdjęcie kursorem w okienku powiększającym najechany fragment zdjęcia przesuwa się tylko na boki a nie także "do góry i nadół". Domyślam się że problem może tkwić w ustawieniach pliku
/themes/<SZABLON>/js/product.js dlatego załączam fragment kodu który może mieć z tym związek i liczę na waszą pomoc!
//update display of the large image
function displayImage(domAAroundImgThumb)
{
if (domAAroundImgThumb.attr('href'))
{
var newSrc = domAAroundImgThumb.attr('href').replace('thickbox','large');
if ($('#bigpic').attr('src') != newSrc)
{
$('#bigpic').fadeIn('fast', function(){
$(this).attr('src', newSrc).show();
if (typeof(jqZoomEnabled) != 'undefined' && jqZoomEnabled)
$(this).attr('alt', domAAroundImgThumb.attr('href'));
});
}
$('#views_block li a').removeClass('shown');
$(domAAroundImgThumb).addClass('shown');
}
}