This topic has 2 replies, 2 voices, and was last updated 3 months, 3 weeks ago ago by Luca Rossi
Hi
How can i make the email field in the checkout prioritized by forcing the customer to fill this one out first?
I remember this was possible in the theme customizer? Am i right?
I was recommended by you to change to elementor builders, so hope the feature is available.
Hi @Nicolo,
Please try adding this custom CSS under XStore > Theme Options > Theme Custom CSS > Global CSS:
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
display: flex;
flex-wrap: wrap;
}
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row {
flex: 0 1 100%;
}
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-first,
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-last{
flex: 0 1 50%;
}
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper p#billing_email_field {
order: -1;
margin-bottom: var(--fields-v-gap, 1.43rem);
}
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper p#billing_phone_field {
order: 2;
}
Hope it helps!
You must be logged in to reply to this topic.Log in/Sign up