PHP Code:
$this->mc_shipping_methods = array(
'usps' => array(
'domestic_types' =>
array( 'Priority' => 'Priority Mail'
),
'international_types' =>
array( 'Priority Lg' => 'Global Priority Mail - Flat-rate Envelope (large)',
'Priority Sm' => 'Global Priority Mail - Flat-rate Envelope (small)',
'Priority Var' => 'Global Priority Mail - Variable Weight Envelope (single)',
'Airmail Letter' => 'Airmail Letter Post'
),
),
'fedex1' => array(
'domestic_types' =>
array(
),
'international_types' =>
array(
),
),
'ups' => array(
'domestic_types' =>
array(
),
'international_types' =>
array(
),
),
'zones' => array(
'domestic_types' =>
array(
'zones' => 'Zones Rates'
),
'international_types' =>
array(
'zones' => 'Zones Rates intl'
),
),
'fedexexpress' => array(
'domestic_types' =>
array(
),
'international_types' =>
array(
),
),
'fedexground' => array(
'domestic_types' =>
array(
),
'international_types' =>
array(
),
),
'freeoptions' => array(
'domestic_types' =>
array(
'freeoptions' => 'Free Options'
),
'international_types' =>
array(
),
),
'freeshipper' => array(
'domestic_types' =>
array(
'freeshipper' => 'Free Shipper'
),
'international_types' =>
array(
),
),
'perweightunit' => array(
'domestic_types' =>
array(
),
'international_types' =>
array(
),
),
'storepickup' => array(
'domestic_types' =>
array(
),
'international_types' =>
array(
),
),
'flat' => array(
'domestic_types' =>
array(
),
'international_types' =>
array(
),
),
'item' => array(
'domestic_types' =>
array(
),
'international_types' =>
array(
),
),
'table' => array(
'domestic_types' =>
array(
'table' => 'Vary by Weight/Price'
),
'international_types' =>
array(
),
),
);
$this->mc_shipping_methods_names = array(
'usps' => 'USPS',
'fedex1' => 'FedEx',
'ups' => 'UPS',
'zones' => 'Zones',
'fedexexpress' => 'Fedex Express',
'fedexground' => 'Fedex Ground',
'freeoptions' => 'Free Options',
'freeshipper' => 'Free Shipper',
'perweightunit' => 'Perweight Unit',
'storepickup' => 'Store Pickup',
'flat' => 'Flat Rate',
'item' => 'Item',
'table' => 'Media Mail',
);
As you can see, most of the values have been removed. If you count the major shipping types listed, you should see 13, each with a 'domestic' and 'international' section. If you see more, look for an extra FREE SHIPPING. That would cause the error you noted above.
Bookmarks