In this quick tip we will see how how we can get Payment Method name using the Magento Order ID.
This will be very useful when you dealing with creating your own extension. Here article title is self explanatory that we are trying to accomplish, so without wasting time let’s look at the code block.
[cc lang=”php”]
$order = new Mage_Sales_Model_Order();
$order_id = ‘00000001’;
$order->loadByIncrementId($order_id);
$payment_method = $order->getPayment()->getMethodInstance()->getTitle();
[/cc]
This is so easy, isn’t it? Do you have any better method than above to get Payment Method name from Order ID in Magento.
Avinash, it’s the simplest and easiest method to get payment method “Magento Order ID”. Thanks for sharing quality stuff.
Vancouver Designer
hi,
thank you for sharing such a great and informative article with us,your article makes the payment work easy through magento order id,
Nice article.
Thanks for sharing.