Hi there,
I am trying to finalize the shipment logic. it seems very simple but I can't make it work.
- The shop has UPS only
- ups prices are taken using the UPS module
- every shipment over 100$ should be free
this is what I wrote to the custom shipping logic:
@sc_shipping_logic = (
"|100.00-|||0.00");
$shipping_price = &calculate_shipping($temp_total,
$total_quantity, $total_measured_quantity);
$shipping_logic_done = "yes";
I selected that it should run after the UPS calculation.
It seems to totally ignore the UPS rates. When I change it to before and remove the shipping_logic_done then it only takes the UPS quotes without the free shipment rule.
Can someone please advice me for the correct settings.
Thx