OK I would like to be able to set up logic so that if the sbw is a total of 0 then only the handeling fee is added once. Or if the SBW is a total of 0 then a flat fe of $5 is added and then use $shipping_logic_done = "yes"; so the handeling fee is not added.
However I am not sure ho to go about setting this up...
Use the custom shipping logic? is set to "yes"
If using Custom Logic, is shipping measured by weight? is set to "yes"
I have:
@sc_shipping_logic = ("|1-99.99|||5.00");
$shipping_price = &calculate_shipping($temp_total,
$total_quantity, $total_measured_quantity);
$shipping_logic_done = "yes";
Use the SBW (Ship By Weight for FedEx/UPS/USPS) module? is set to "yes"
*** but if a cusomer orders three items that can be shipped for the flat fee of $5 it could exceed the 99.99 limit and then charge a lot more... These are small items and I can set the weight to 0 so if they 6 small items the weight is still 0 and the flat fee of $5.00 would be added.
Any help would be appriciated very very very much!