Magento shopping cart total items quantity
If you want to get cart total items quantity from magento shopping cart, you can use the below snippet.
With the help of the above function we can get cart total items quantity by putting
function getCartQty(){
$cartcollection = Mage::getModel('checkout/cart')->getQuote()->getData();
if (isset($cartcollection['items_qty']))
return (int)$cartcollection['items_qty'];
else
return 0;
}
echo getCartQty();
[...] can update order status of product in magento by using this below code. setState() function will do this for us, all we [...]
ReplyDelete