Magento – How to Find the Shipping Method Code

shipping-methods

As we have shipping method code for each shipping method.

I want to know how to find that shipping method code

Best Answer

As per as magento system,for a shipping method,it method code is define in it's Shipping method class.

In cofig.xml,magento define it model class.

Example: <model>shipping/carrier_tablerate</model>

On that model class,You can get method name from $_code variable

Example: for table rate method:

class Mage_Shipping_Model_Carrier_Tablerate
    extends Mage_Shipping_Model_Carrier_Abstract
    implements Mage_Shipping_Model_Carrier_Interface
{..

 protected $_code = 'tablerate'; // this method code:
..
Related Topic