Magento: Save shipment information of order programatically After creating invoice and shipment, it is necessary to add tracking information to…
Magento
If your Magento website have feature where guest user can place an order without registering themself in your site, you…
Suppose you want to add column to some table before it gets save in Magento. Example, Magento doesn’t save regular…
In Magento, it’s a feature to create multiple invoices and shipments. But you can’t find the link between invoice with…
If you use the Magento event / observer system for extending Magento (if you don’t you should) then you will…
If you have noticed or not, in version 1.5 of Magento when you use GROUP BY clause in any Grid.php…
<?php $helper = $this->helper(‘catalog/category’) ?> <?php foreach ($helper->getStoreCategories() as $_category): ?> <a href=”<?php echo Mage::getModel(‘catalog/category’) …
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
This is one of the easiest way to show Either Error message or Success message in magento for one time.If…
Suppose you have a multi select attribute and you have displayed it in admin grid. You have displayed the multi…