skip to Main Content

How to customize checkout woocommerce fields?

I need to change the sorting of the checkout fields. Added filter woocommerce_checkot_fields, but does not work. add_filter( 'woocommerce_checkout_fields', 'custom_order_checkout_fields' ); function custom_order_checkout_fields( $checkout_fields ) { $checkout_fields['billing']['billing_first_name']['priority'] = 10; $checkout_fields['billing']['billing_company']['priority'] = 20; $checkout_fields['billing']['billing_email']['priority'] = 30; $checkout_fields['billing']['billing_phone']['priority'] = 40; $checkout_fields['billing']['billing_country']['priority'] =…

VIEW QUESTION
Back To Top
Search