
Originally Posted by
grace83
That worked, thank you!!
Is there a way to define the handling fee for domestic vs international orders? We'd like to have it $0.75 for domestic orders and $2 handling fee for international. Possible?
The Handling is managed in the code:
Code:
$methods[] = array('id' => $type,
'title' => $title,
'cost' => ($cost * $shipping_num_boxes) + (MODULE_SHIPPING_USPS_HANDLING_METHOD == 'Box' ? MODULE_SHIPPING_USPS_HANDLING * $shipping_num_boxes : MODULE_SHIPPING_USPS_HANDLING) );
Where you see the MODULE_SHIPPING_USPS_HANDLING you would want to change that based on if the shipping is for National or International ...