Below is the shipping logic that I came up with based on looking at other posts. I copy & pasted it into the custom shipping logic box and turned on custom shipping. My question is what do I need to edit in the file "Authorize.Net-orderform.html" to get this to work?
@sc_shipping_logic = ( "First Class|||-.4|1.99",
"First Class|||.41-1.2|4.29",
"First Class|||1.21-2|6.79",
"First Class|||2.01-5|4.29",
"Priority Mail|||-.8|6.79",
"Priority Mail|||.81-5|12.79",
"Express Mail|||-2|19.79",
"Express Mail|||2.01-5|37.79");
#
$shipping_price = &calculate_shipping($temp_total,
$total_quantity, $total_measured_quantity);
My store URL is: http://www.mulletonthego.com/shoppingcart/agora.cgi?product=mullets
Thanks in advance.