12

I having problem in getting the thumbnail image url for the items on the Magento Cart

Here is my code:

$quote = Mage::getSingleton('checkout/session')->getQuote();
$cartItems = $quote->getAllVisibleItems();
foreach ($cartItems as $item) {
echo $item->getThumbnail();
}

Does anyone know that why does it returns always blank.

Nirmal Ram
  • 1,722
  • 4
  • 25
  • 45

1 Answers1

25
Mage::helper('catalog/image')->init($item->getProduct(), 'thumbnail');

Will do the trick

janw
  • 6,672
  • 6
  • 26
  • 45
dagfr
  • 2,349
  • 1
  • 19
  • 22