change Shipping Information Carrier
发布于2020年12月02日 | 暂无评论 | 511阅读 | Uncategorized
You can add addition carrier option in below file
app/code/core/Mage/Adminhtml/Block/Sales/Order/Shipment/Create/Tracking.php
Go to Line 70 , Add below line before return $carriers;
in getCarriers() Function
$carriers['My Custom Carrier'] = Mage::helper('sales')->__('My Custom Carrier');
Replace My Custom Carrier
with your carrier name.
暂无评论