Hi all
Newbie here.
I have configured my shipping such that there are 3 options:
USPS
UPS
Fedex
Those are the only shipping choices. My goal is that when they select any one of those, a set price is added to the order no matter the cost or # of items. So this is the logic I found online:
@sc_shipping_logic = ( "USPS|1-|||5.00",
"UPS|1-|||10.00",
"FedEx|1-|||15.00");
$shipping_price = &calculate_shipping($temp_total,
$total_quantity, $total_measured_quantity);
$shipping_logic_done = "yes"; # forces exit, no handling charge added
When I click through and try to order, nothing happens. No shipping charges are added.
Any ideas?
Thanks so much,
Adam