简体   繁体   中英

How to fix web page loads half way down page

https://jakke.co.uk/checkout/

when there is something in the basket and you go to the checkout it loads the page half way down and I can't work out why.

need it to load like normal at top of page.

Is a woocommerce site with theme, have tried removing theme override files and it still happens.

It is because of focus in "Firstname" field of Billing Form.

Just put below code to your theme functions.php file.

add_filter( 'woocommerce_checkout_fields' , 'custom_wc_checkout_fields' );

function custom_wc_checkout_fields( $fields ) { $fields['billing']['billing_first_name']['autofocus'] = false; $fields['shipping']['shipping_first_name']['autofocus'] = false; return $fields;

 function custom_wc_checkout_fields( $fields ) { $fields['billing']['billing_first_name']['autofocus'] = false; $fields['shipping']['shipping_first_name']['autofocus'] = false; return $fields; 

}

I hope it will help you.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM