0
如何從view.phtml頁面上list.phtml頁面顯示的縮略圖在Magento 1.9.2.4,我已經試過很多東西,但沒有什麼真正適合我,請分享一些能解決我的問題的東西。在此先感謝如何讓list.phtml頁面縮略圖在Magento 1.9.2.4
如何從view.phtml頁面上list.phtml頁面顯示的縮略圖在Magento 1.9.2.4,我已經試過很多東西,但沒有什麼真正適合我,請分享一些能解決我的問題的東西。在此先感謝如何讓list.phtml頁面縮略圖在Magento 1.9.2.4
<?php //get images for product
$product = Mage::getModel('catalog/product')->load($_product->getId());
$helper = Mage::Helper('catalog/image');
foreach ($product->getMediaGalleryImages() as $image) {
echo "<img src='" . $this->helper('catalog/image')->init($this->getProduct(), 'thumbnail', $image->getFile())->resize(80) . "' />";
}
?>
請試試這個
Mage::helper('catalog/image')->init($item->getProduct(), 'thumbnail');
如何添加這個好心的份額細節 –