You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are using Mageplaza's One Step Checkout (OSC), and the postcode and address fields are currently displayed at the end of the billing/shipping form. Could you please guide us on how to adjust the field order so that these fields appear below the first name and last name fields?
Thanks
The text was updated successfully, but these errors were encountered:
Our module should be able to change the order of address fields using the option "Change address fields position", so make sure that is enabled.
If that is not working then there may be a compatibility issue with the current version of Mageplaza's checkout. Or some other logic is changing the sort order.
Could you check the sort order for some address fields to see if you get the correct numbers?
On your checkout page, use the following in your browser console to get sort order:
// Single autocomplete field:
require('uiRegistry').get('checkout.steps.shipping-step.billingAddress.billing-address-fieldset.address_autofill_intl').sortOrder; // Should be 910
// Dutch postcode / house number component:
require('uiRegistry').get('checkout.steps.shipping-step.billingAddress.billing-address-fieldset.address_autofill_nl').sortOrder; // Should be 920
// Street fields group:
require('uiRegistry').get('checkout.steps.shipping-step.billingAddress.billing-address-fieldset.street').sortOrder; // Should be 940
Hello;
We are using Mageplaza's One Step Checkout (OSC), and the postcode and address fields are currently displayed at the end of the billing/shipping form. Could you please guide us on how to adjust the field order so that these fields appear below the first name and last name fields?
Thanks
The text was updated successfully, but these errors were encountered: