Magento-Get Information of Items in Cart
$items=Mage::getSingleton('Checkout/Session')->getQuote()->getAllItems();
foreach($items as $item)
{
echo $item->getName();
->getQty();
->getPrice();
->getSku();
->getProductid()
}
$items=Mage::getSingleton('Checkout/Session')->getQuote()->getAllItems();
foreach($items as $item)
{
echo $item->getName();
->getQty();
->getPrice();
->getSku();
->getProductid()
}
No comments:
Post a Comment