Hi all,
I have 2 drop down Shipping options on the order form (Priority & Express). I have successfully set up the Priority Shipping method using order total ranges. I need Express to be a flat rate of $25.
This is what I have in the Shipping setup box but can't get the $25 for Express to get calculated in at Check Out:
@sc_shipping_logic = ( "|1-19.99|||6.50",
"|20-39.99|||8.50",
"|40-59.99|||9.50",
"|60-79.99|||10.85",
"|80-99.99|||12.75",
"|100-125.99|||14.50",
"|126-145.99|||15.75",
"|146-199.99|||17.50",
"|200-299.99|||20.50",
"|300-499.99|||24.75",
"|500-|||29.75"
"Express|1-|||25.00" );
#
$shipping_price = &calculate_shipping($temp_total,
$total_quantity, $total_measured_quantity);
Do I just need to create a separate shipping logic for the Express method?
Store url: http://buzix1.domainnameservers.net/~custo8/shop/agora.cgi
Thanks,
Rachel