Styled Blog List #1

Here is the sample of the styled blog list with customized left sidebar. Build amazing styled blog lists with Scalia's top-notch blog styles!
How to get cart subtotal and quantity in Magento

Get all items information in cart// $items = Mage::getModel(‘checkout/cart’)->getQuote()->getAllItems();$items = Mage::getSingleton(‘checkout/session’)->getQuote()->getAllItems();foreach($items as $item) {echo ‘ID: ‘.$item->getProductId().’‘;echo ‘Name: ‘.$item->getName().’‘;echo ‘Sku: ‘.$item->getSku().’‘;echo…

1 35 36 37 53