My Shipping Logic is this:
Quote:
@sc_shipping_logic = ( "Ground|||-.99|2.19",
"Ground|||1-1.99|3.15",
"Ground|||2-3.99|7.07",
"Ground|||4-7.99|7.48",
"Ground|||8-11.99|7.80",
"USPS Priority|||-1.99|4.55",
"USPS Priority|||2-11.99|8.10",
"UPS 2nd Day|||-1.99|15.95",
"UPS 2nd Day|||2-3.99|17.40",
"UPS 2nd Day|||4-7.99|19.95",
"UPS 2nd Day|||8-11.99|22.27",
"UPS Next Day|||-1.99|38.95",
"UPS Next Day|||2-3.99|40.37",
"UPS Next Day|||4-7.99|44.08",
"UPS Next Day|||8-11.99|47.68");
#
$shipping_price = &calculate_shipping($temp_total,
$total_quantity, $total_measured_quantity);
This works great until someone order over 12 lbs.
Is there a way to add a note that says "Call For Shipping Rates" if the order is over 12 lbs?
Obviously this doesn't work but this illustrates what I want to do:
Quote:
"|||12-|Call For Shipping",