0

我正在尝试改变 Magento 处理产品图像的方式。目前在可配置产品上,它显示您已上传到可配置产品的图像。

我想要它,这样如果产品是可配置的,那么它只会显示相关产品的图像,而不是上传到配置产品的图像。

在我的媒体文件中,我有

<?php foreach ($this->getGalleryImages() as $_image): ?>

    <li><a href="<?php echo $this->htmlEscape($_image->getLabel()) ?>"><img src="<?php echo $this->helper('catalog/image')->init($this->getProduct(), 'thumbnail', $_image->getFile())->resize(70, 70); ?>" width="70"/></a></li>

<?php endforeach; ?>

我可以看到是从可配置产品的图库中提取图像,因此需要以某种方式更改它以检查它是否是可配置产品,然后是否仅从相关产品中提取图像。

我想检查它是否是可配置的,它会是这样的吗?

<?php if ($_product->isSaleable() && (!$_product->isConfigurable() ?>

然后是拉取相关产品图像的新代码,我需要一些帮助。

4

1 回答 1

0

您可以通过调用可配置产品从可配置产品中获取一系列使用过getAllowProducts()的产品。

foreach ($_product->getAllowProducts() as $_associatedProduct) {
    echo $this->helper('catalog/image')->init($_associatedProduct, 'image')
        ->resize(340,260);
}
于 2012-07-24T16:30:10.480 回答