Search code examples
magento

Magento get order shipping method title


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?


Solution

  • $oOrder->getShippingDescription();