August 22, 201302:30 Magento: How to search or filter by multiselect attribute in admin grid Magento | Uncategorized Suppose you have a multi select attribute and you have displayed it in admin grid. You have displayed the multi… Read more
August 21, 201302:00 Magento Sales Order Grid Customization Magento | Uncategorized Follow the steps to add column in sales order grid: Here by i am two column called Payment method and… Read more
August 20, 201302:30 Create custom Reports in Magento Admin Magento | Uncategorized Want to create a custom report in Magento Admin? After taking help from some forums & all I was able… Read more
August 20, 201300:30 How to Email From A Custom Module In Magento Magento | Uncategorized Magento seemingly makes the most mundane development tasks an exercise in patience. The over engineered PHP beast makes you do… Read more
August 19, 201317:50 How to create Order programmatically in magento Magento | Uncategorized Below is the php code to create an order in magento. It requires a valid customer account with shipping and… Read more
August 19, 201317:49 How to create invoice programmatically in magento Magento | Uncategorized Below is a php code to create invoice for an order in magento. $order = Mage::getModel(‘sales/order’)->loadByIncrementId(‘100000001’);try {if(!$order->canInvoice()){Mage::throwException(Mage::helper(‘core’)->__(‘Cannot create an invoice.’));}… Read more