Update:
I solved Germany with this plugin:
https://github.com/jckronbauer/woocommerce-germany-states
If I get the list of French states, could I, based on this one, add other countries like this?
`function wc_add_france_states( $states ) {
$states[‘FR’] = array(
‘XX’ => ‘…’,
‘YY’ => ‘…’
);
return $states;
}
add_filter( ‘woocommerce_states’, ‘wc_add_france_states’ );
I try to use as much out of the box as possible. The only plugin related to registration is “Simple Registration for WooCommerce”.
But the same issue appears when I try to change shipping address for an existing account: “State / County is a required field.”