I\'m trying to customise WooCommerce checkout page, how can I edit field labels?
Also, how can I remove 2 fields from the form? I don\'t need Company
an
Here is a working hook that you need to add into your theme's functions.php file
add_filter( 'woocommerce_checkout_fields' , 'remove_checkout_fields' );
function remove_checkout_fields( $fields ) {
unset($fields['billing']['billing_state']);
unset($fields['billing']['billing_company']);
unset($fields['billing']['billing_country']);
return $fields;
}