How to get full product image url in Magento

后端 未结 4 1669
攒了一身酷
攒了一身酷 2021-02-08 19:01

How to get full product image url in magento ,i need to migrate the data from magento to django so i need to get the product full imag

4条回答
  •  温柔的废话
    2021-02-08 19:31

    You can try below code first of all call helper of catalog

    echo  Mage::helper('catalog/image')->init($product, 'thumbnail');
    

    From this code you can get cache path also.

提交回复
热议问题