Quote Originally Posted by wolfderby View Post
Yes

for
Shipping Options: USPS

although I'd like it to be USPS and UPS

Table Zone ID
Shipping Country 223
Shipping Region PA
Shipping Service PARCEL

I've tried Parcel Post as the service as well as ground

All result in 0 for <grice> in shipping.

I was having a hard time finding exactly what to type in these fields.

Thanks,
b
USPS and UPS are not supported shipping methods. Only the ones listed in the dropdown.

You said you set the method as "per weight unit", was this module installed and enabled in your admin?

You can see the calculation if "per weight unit" is selected:

PHP Code:
$rate = (MODULE_SHIPPING_PERWEIGHTUNIT_COST $products_weight) + MODULE_SHIPPING_PERWEIGHTUNIT_HANDLING
Obviously if the module is not installed, those constants would have a value of 0 and (0 * any number) + 0 = 0. I can add checks to make sure a selected module is installed, but this will simply add more processing time. It should be obvious that in order to use a module, it has to be installed.

Same thing will happen if the products_weight is 0 and there is no handling fee...