Magento get order shipping method title

nabizan picture nabizan · Aug 26, 2012 · Viewed 33.1k times · Source

Hi can anybody tell me how can i get after successfully order is placed shipping method title?

Here is what i have

$iOrderId = Mage::getSingleton('checkout/session')->getLastRealOrderId();
$oOrder = Mage::getModel('sales/order')->loadByIncrementId($iOrderId);

echo $oOrder->getShippingMethod();

but how can i get this shipping method title?

Answer

ADev picture ADev · Aug 26, 2012
$oOrder->getShippingDescription();