Code-Snippets-Functions/Execute a function on a child site/WooCommerce/move-email-field-to-top-of-checkout.txt

6 lines
221 B
Text

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