Skip to content

Instantly share code, notes, and snippets.

@wcodex
Created October 3, 2013 08:52
Show Gist options
  • Save wcodex/6807149 to your computer and use it in GitHub Desktop.
Save wcodex/6807149 to your computer and use it in GitHub Desktop.
How to get cart URL and Cart Item Count in Magento
<?php
// to get cart URL
$cartUrl = $this->getUrl('checkout/cart');
//to get cart Item count
$_cartQty = Mage::getSingleton('checkout/cart')->getItemsCount();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment