Quantcast
Channel: Amjath.com
Viewing all articles
Browse latest Browse all 14

Get Cart Items in Magento

$
0
0

Use the below code to get All cart items in Magento

$cartHelper = Mage::helper('checkout/cart');
$items = $cartHelper->getCart()->getItems();

foreach ($items as $item) {
echo $item->getItemId();
}

Cheers!
Amjath


Viewing all articles
Browse latest Browse all 14

Trending Articles