ZC 2.0
PHP 8.3
I noticed that when clicking on the main image on a Product info page, the popup window displays the medium version instead of the large version of the image. I fixed the issue by changing line 17 of includes/templates/template_default/templates/tpl_modules_main_product_image.php from:
Code:
<?php echo zen_image($products_image_medium, $products_name, '', '', 'class="centered-image"'); ?>
to:
Code:
<?php echo zen_image($products_image_large, $products_name, '', '', 'class="centered-image"'); ?>
Bookmarks