How to get a product's image in Magento?

后端 未结 12 1133
慢半拍i
慢半拍i 2020-12-01 06:32

I\'m running on version 1.3.2.1, but on my client\'s server they had Magento 1.3.0 so my previous code to display images for my local copy,

echo $this->he         


        
12条回答
  •  臣服心动
    2020-12-01 07:02

    You need set image type :small_image or image

    echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(163, 100);
    

提交回复
热议问题