If you decide to delete or reorder checkout fields, you probably also need to change the checkout field with “autofocus”. In plain English, this is the checkout field where the keyboard cursor goes automatically to on checkout page load (by default, this is the Billing First Name).
As usual, changing this default behavior is very easy, even if you’re not familiar with PHP. In the example below, I’m removing the autofocus from Billing First Name and assigning it to the Billing Email field instead.
Copy the snippet, test it on your development environment and only then push it to your live website. Enjoy!
PHP Snippet: Change Autofocus Field @ WooCommerce Checkout
/** * @snippet Change autofocus field @ WooCommerce Checkout * @how-to Get CustomizeWoo.com FREE * @sourcecode https://businessbloomer.com/?p= * @author Rodolfo Melogli * @testedwith WooCommerce 3.3.4 */ add_filter( 'woocommerce_checkout_fields', 'bbloomer_change_autofocus_checkout_field' ); function bbloomer_change_autofocus_checkout_field( $fields ) { $fields['billing']['billing_first_name']['autofocus'] = false; $fields['billing']['billing_email']['autofocus'] = true; return $fields; }