/ Published in: PHP
URL: http://shamimcse05.wordpress.com/2010/12/23/how-to-get-total-cart-item-and-total-price-in-magento/
To display it in a cms page, {{block type="checkout/cart" blockid="myblock" template="pathto.phtml"}}
Expand |
Embed | Plain Text
<?php $count = $this->helper('checkout/cart')->getSummaryCount(); //get total items in cart $total = $this->helper('checkout/cart')->getQuote()->getGrandTotal(); //get total price if($count==0) { } if($count==1) { } if($count>1) { } ?>
You need to login to post a comment.
