August 23, 201312:42 Magento: Adding column to sales_flat_order_item, sales_flat_invoice_item and sales_flat_shipment_item Magento | Uncategorized Suppose you want to add column to some table before it gets save in Magento. Example, Magento doesn’t save regular… Read more
August 23, 201312:41 Magento: Linking multiple shipments with their invoices Magento | Uncategorized In Magento, it’s a feature to create multiple invoices and shipments. But you can’t find the link between invoice with… Read more
August 23, 201312:38 Magento: Wrong count in admin Grid when using GROUP BY clause, overriding lib module Magento | Uncategorized If you have noticed or not, in version 1.5 of Magento when you use GROUP BY clause in any Grid.php… Read more
August 23, 201307:00 How to call category list in footer in magento Magento | Uncategorized <?php $helper = $this->helper(‘catalog/category’) ?> <?php foreach ($helper->getStoreCategories() as $_category): ?> <a href=”<?php echo Mage::getModel(‘catalog/category’) … Read more
August 23, 201306:30 How to get the customer login, logout, register and checkout url in magento Magento | Uncategorized Mage::getUrl(‘customer/account/login’); //login urlMage::getUrl(‘customer/account/logout’); //logout urlMage::getUrl(‘customer/account’); //My Account urlMage::getUrl(‘customer/account/create’); // Register urlMage::getUrl(‘checkout/cart’); //Checkout url Read more
August 22, 201314:43 How to show add Success message and add Error message in Magento Magento | Uncategorized This is one of the easiest way to show Either Error message or Success message in magento for one time.If… Read more