TAG | magento shipping method error

When pressing ‘Ship’ in your order, you may come across the following error message:

Fatal error: Call to a member function isShippingLabelsAvailable() on a non-object in /home/public_html/app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Create/Items.php on line 132

To fix this go to app/code/core/Mage/Sales/Model/Order.php and find line 1213

Then simply change this:
$shippingMethod = parent::getShippingMethod(); 
To this:
$shippingMethod = $this->getData('shipping_method');



· · · ·