我可以通过 $this->getGalleryImages() 看到 media.phtml(带有 Cloud Zoom 扩展)如何列出产品页面上的所有图像:
<?php foreach ($this->getGalleryImages() as $_image): ?>
<?php ... ?>
<?php endforeach; ?>
但是,当我在目录产品页面模板 view.phtml 中使用 $this->getGalleryImages() 时,它不会返回或输出任何内容。但是,这只会打印产品页面上的第一张图片:
<img src="<?php echo $this->helper('catalog/image')->init($_product, 'image')->constrainOnly(TRUE)->keepAspectRatio(TRUE)->keepFrame(FALSE)->setWatermarkImageOpacity(0)->resize(300, null);?>" alt="<?php echo $this->htmlEscape($this->getImageLabel());?>" title="<?php echo $this->htmlEscape($this->getImageLabel());?>" />
我的问题是如何遍历并显示产品页面上的所有产品图像(view.phtml,而不是 media.phtml)?基本上,我希望它们全部显示在页面上,而不需要缩略图或缩放或任何东西,只是简单的大图像,一个接一个。
谢谢!