shipping options not updated when the address is chosen with a mouse click
-
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?
- You must be logged in to reply to this topic.