You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.
Here I go again!
I'm trying to get two shipping methods set up in the custom ship script for 3.6 based on the below values:
Two shipping methods:
Method One UPS - Tiered based on these values:
----------------------------------------------
if ($ship_calc_total >= "0" && $ship_calc_total <= "5.00") {
$temp_shipping_total = ($foreign_surcharge_method_one + 2.00);
} elsif ($ship_calc_total > "5.00" && $ship_calc_total <= "30.00") {
$temp_shipping_total = ($foreign_surcharge_method_one + 8.00);
} elsif ($ship_calc_total > "30.00" && $ship_calc_total <= "50.00") {
$temp_shipping_total = ($foreign_surcharge_method_one + 11.00);
} elsif ($ship_calc_total > "50.00" && $ship_calc_total <= "75.00") {
$temp_shipping_total = ($foreign_surcharge_method_one + 16.00);
} else{
$temp_shipping_total = ($foreign_surcharge_method_one + 20.00);
----------------------------------------------
and Two: Will Call - $0.00
Any suggestions?
Everything works great!!!!!!
Thanks for the help!