TAG | magento shipping method error
Feb/12
6
Fixing Magento ‘Fatal Error’ Shipping Issue
No comments · Posted by Ryan in Magento user guides and help
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');
isShippingLabelsAvailable() · Magento Shipping · Magento Shipping Error · magento shipping method error · shipping bug magento
