Search code examples
expressionengineexpresso-store

Is there a way to apply the shipping fee automatically?


Good day,

I have two shipping methods, which are "International Shipping" and "US Shipping".

Is there a way to apply the shipping fee without resubmitting it again after user fills in the billing/shipping address and process to the last phase of placing order ?

Thank you.


Solution

  • I had this question recently and managed to figure it out.

    $("#shipping_method").change(function(e) {
        $(this.form).submit();
    });
    

    Asked and answered at EE Stack Exchange