Two ways of reordering checkout fields in WooCommerce, we can even move the fields from a one field group to another.
The method you are using no longer works (since the WooCommerce 3.0.4 update - link to github issue here). It's not exactly a bug, but rather a change of spec.
As an example, let's change the placeholder on the order_comments fields. Currently
Checkout field modifications · Editing the design · Changing the text on the “Place Order” button · Removing a field · Making a field required (or not ...
Same can be done through functions.php in your (child) theme: add_filter(" woocommerce_checkout_fields", "order_fields"); function order_fields($fields) ...
To change the order, you can set the “priority” attribute of the fields. By default, The VAT number field has a priority of 250, whereas the certification has a priority of ...
In order to change the field attributes, you can use the Checkout Field Editor extension input type and placeholder text, change the position, and even add new ...
Checkout Field Editor for WooCommerce plugin provides an easy way to customise (add, edit, delete and change display order) your fields displayed on ...
Change the Default WooCommerce Checkout Page - rearrange fields,
You may be using the WooCommerce Checkout Field Editor plugin, but depending on the theme re-ordering the checkout fields using the drag ...