• The shipping options are not calculated if the address is chosen from the dropdown list using the mouse.

    I added the following line to the front-end code to trigger this.

    jQuery(document.body).trigger('update_checkout');

    That’s on line 81 of address-autocomplete.js

    // Listen for an autocomplete selection and set new values.
    google.maps.event.addListener(address, "place_changed", () => {
    	this.parsePlace(address, fieldInputs);
    
    	jQuery(document.body).trigger('update_checkout');
    });

    Could you add this to your code?

    • This topic was modified 1 month, 4 weeks ago by alekv.
  • You must be logged in to reply to this topic.