Magento 1.9 – Total Summary Cart, Add Number of Items

cartmagento-1.9order-summary

I want to add "Total Items" row to display current amount of items in the cart.

Something like this:
items

How can I display the $_cartQty in this summary section?

Best Answer

If you want to edit app\design\frontend\THEME\PACKAGE\template\checkout\cart\totals.phtml, you can use

<?php echo $this->getQuote()->getItemsSummaryQty(); ?>
Related Topic