Monday, 8 February 2016

Get Product Image In Cart Page

$CartSession = Mage::getSingleton('checkout/session');
foreach($CartSession->getQuote()->getAllItems() as $item)
{
  $id = $item->getId();
  echo $item->getName();
  $image = Mage::helper('catalog/image')->init($item->getProduct(), 'thumbnail');
}

No comments:

Post a Comment