woogists
3/12/2018 - 12:01 PM

[Add/Modify States] Modify shipping states in WooCommerce

[General Snippets] Add/Modify States Modify

/**
 * Code goes in functions.php or a custom plugin. Replace XX with the country code your changing.
 */
add_filter( 'woocommerce_states', 'custom_woocommerce_states' );

function custom_woocommerce_states( $states ) {

  $states['XX'] = array(
    'XX1' => 'State 1', 
    'XX2' => 'State 2'
  );

  return $states;
}