0
0
Read Time:13 Second
Esta función se agrega en el archivo functions.php
Permite agregar manualmente tus regiones al select de woocommerce en el checkout.
function custom_woocommerce_states( $states ) {
$states['XX'] = array( 'XX1' => 'State 1', 'XX2' => 'State 2' );
return $states; }
add_filter( 'woocommerce_states', 'custom_woocommerce_states' );