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.
Is there a way to have the cart not charge shipping based on the user checking an option value?
For example, if they check 'pick the order up' then on checkout, it does not charge shipping since they will be coming in to get the order.
Thanks
How about a little help for a Novice?
I am asusming to achieve the option I asked about in the first post, I edit the site_store_shipping_custom_pl.
I have the basic idea, but I'm sure I have the if statement wrong as the shipping defaults to the next method.
-------------------------------------------------------------
$ship_calc_total = "$final_form_display_order_subtotal";
$ship_total_quantity = "$form_display_total_quantity";
if ($option_ref_23 >= "VALUE=Pick Up" && $ship_calc_total <= "0") {
$temp_shipping_total = ($foreign_surcharge_method_one + 0.00);}
elsif ($ship_calc_total > "0" && $ship_calc_total <= "5.0") {
$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{