Skip to content

Instantly share code, notes, and snippets.

@scottopolis
Created March 11, 2021 16:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scottopolis/22c4985013feab57974d1d251fa0eccf to your computer and use it in GitHub Desktop.
Save scottopolis/22c4985013feab57974d1d251fa0eccf to your computer and use it in GitHub Desktop.
Email First in WooCommerce Checkout
<?php
// make email the first field on the WooCommerce checkout page
add_filter( 'woocommerce_checkout_fields', 'sb_edit_checkout_fields' );
function sb_edit_checkout_fields( $fields ) {
// make email first
$fields['billing']['billing_email']['priority'] = 4;
return $fields;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment