Follow the steps to add column in sales order grid: Here by i am two column called Payment method and…
Magento
Want to create a custom report in Magento Admin? After taking help from some forums & all I was able…
Magento seemingly makes the most mundane development tasks an exercise in patience. The over engineered PHP beast makes you do…
Below is the php code to create an order in magento. It requires a valid customer account with shipping and…
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.’));}…
Below is a php code to create a shipment for an order in magento. $order = Mage::getModel(‘sales/order’)->loadByIncrementId(‘100000001’); try { if($order->canShip())…
Below is a php code to create a credit memo for an order in magento.$order = Mage::getModel(‘sales/order’)->load(‘100000001’, ‘increment_id’); if (!$order->getId())…
The solution was quite simple, this one doesn’t mess up the paths. However it feels like this method is slower….
Go System->Configuration->Google API->Google CheckoutEnable Google Checkout and other configurations set details about your google checkout like merchant id, merchant key…
Many time during design and development of magento theme we require toremove default top menu bar of magento to do…