Move the Billing Email to the Top of the WooCommerce Checkout Page

Add this Code Snippets

add_filter( 'woocommerce_billing_fields', 'move_checkout_email_field' );
 
function move_checkout_email_field( $address_fields ) {
    $address_fields['billing_email']['priority'] = 1;
    return $address_fields;
}

Please Share

Help us to create Amazing Content!