Thank you for helping used shipping method generator would only pick up if I did not select zone in USPS module. I added the USPS part of shipping method from the generator with no zone selected in shipping mod.
shipping methods php:
application/x-httpd-php shipping_methods.php
PHP script text
<?php
/**
* File: googlecheckout/shipping_methods.php file
*/
$mc_shipping_methods = array(
'ups' => array(
'domestic_types' =>
array(
'GND' => 'Ground',
'3DS' => '3 Day Select',
),
'international_types' =>
array(
'STD' => 'Canada Standard',
),
),
'usps' => array(
'domestic_types' =>
array(
'PRIORITY' => 'Priority Mail',
),
'international_types' =>
array(
),
),
'freeshipper' => array(
'domestic_types' =>
array(
'freeshipper' => 'Free Shipper'
),
'international_types' =>
array(
'freeshipper' => 'Free Shipper intl'
),
),
);
$mc_shipping_methods_names = array(
'ups' => 'United Parcel Service',
'usps' => 'United States Postal Service',
'freeshipper' => 'Free Shipper',
);
?>
Bookmarks