Home » WooCommerce: Change Autofocus Field @ Checkout

WooCommerce: Change Autofocus Field @ Checkout

by Tutor Aspire

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!

Change the autofocus field @ WooCommerce Checkout

PHP Snippet: Change Autofocus Field @ WooCommerce Checkout

 

/**
* @snippetChange autofocus field @ WooCommerce Checkout
* @how-toGet tutoraspire.com FREE
* @sourcecodehttps://tutoraspire.com/?p=
* @authorTutor Aspire
* @testedwithWooCommerce 3.3.4
*/

add_filter( 'woocommerce_checkout_fields', 'tutoraspire_change_autofocus_checkout_field' );

function tutoraspire_change_autofocus_checkout_field( $fields ) {
$fields['billing']['billing_first_name']['autofocus'] = false;
$fields['billing']['billing_email']['autofocus'] = true;
return $fields;
}

You may also like