2014-09-25 65 views
0

我有圖像屬性'upsell_gif'適用於我的gif,應該只在upsell框中可見。Magento拉圖像屬性upsell.phtml

當我在upsell.php

<?php echo $this->helper('catalog/image')->init($_link, 'small_image')->resize(125) ?> 

改變

<?php echo $this->helper('catalog/image')->init($_link, 'upsell_gif')->resize(125) ?> 

我得到一個錯誤。爲什麼?我可以調用圖像與

<img src="<?php echo $this->helper('catalog/image')->init($_product, 'upsell_gif')->resize(150, 150); ?>" /> 
在view.phtml完美

..

回答

0

嗯,我知道了。我的屬性設置錯了。創建媒體屬性時,選擇'圖像'之前選擇'前端可見'。它會消失,然後就不可編輯。