2013 July

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…

Magento : Language pack link

1. Germany German http://www.magentocommerce.com/extension/413/magento-community-modules–german-germany-language-pack Key : magento-community/Locale_Mage_community_de_DE 2. France and French:http://www.magentocommerce.com/extension/414/magento-community-modules–french-france-language-pack 3.Spanish: http://www.magentocommerce.com/extension/398/magento-community-modules–spanish-spain-language-pack key: magento-community/Locale_Mage_community_es_ES 4.Portuguese:http://www.magentocommerce.com/extension/388/magento-community-modules–portuguese-brazil-language-pack Key : magento-community/Locale_Mage_community_pt_BR 5.Russian:…

1 8 9 10 15