Just call: $payment = $order->getPayment()->getMethodInstance()->getTitle();
Magento
Posted on:
How to get country name from country ID in Magento?
This one is quite simple: $countryName = Mage::getModel(’directory/country’)->load($country_id)->getName();
Magento
Posted on:
Sorting custom collection in Magento
It seems to be trivial, but it’s not. If you want to use custom table and custom model, and sort collection by one of your table’s column, you […]