我希望从产品的图库图像中将图像标记为特殊图像。使用此图像我想获取该图像网址。
我尝试使用相同但不适合我的代码
<?php echo Mage::getModel('catalog/product')->load($_product->getId())->getMediaGalleryImages()->getItemByColumnValue('label','look')->getFile(); ?>
这对方法getFile()
的抛出错误答案 0 :(得分:1)
您可以通过这种方式获得具有特定标签的产品图片
$image= Mage::getModel('catalog/product')->load($productid)->getMediaGalleryImages();
$_images = $image->getItemByColumnValue('label', 'YOUR_LABEL');
http://magentotutorialbeginners.blogspot.in/2014/03/get-product-image-from-label-magento.html
如果您有任何疑问,请告诉我