this is short script to create an invoice & send email invoice to the client, here you go $orderId = 250; $order = Mage::getModel(‘sales/order’)->load($orderId); try…
Continue reading Magento: Create & Send Invoice Programatically
Leave a CommentIndonesian Magento Developer
this is short script to create an invoice & send email invoice to the client, here you go $orderId = 250; $order = Mage::getModel(‘sales/order’)->load($orderId); try…
Continue reading Magento: Create & Send Invoice Programatically
Leave a Commentthis is example how to change style for input text or text area, here you go your-selector::-webkit-input-placeholder { color: red; } your-selector:-moz-placeholder { color:…
Continue reading CSS: Styling Input Text/Textarea Element
Leave a Commentthis is magento hack how to re-open or uncancel the order, use following script, here we go $order = Mage::getModel(‘sales/order’)->load($ORDER_ID); $order->setState(Mage_Sales_Model_Order::STATE_NEW); $order->setStatus(‘pending’); $order->save(); foreach…
Continue reading Magento: Reopen Canceled or Complete Order
Leave a Comment