No se han encontrado widgets en la barra lateral
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' );
Happy
Happy
0 %
Sad
Sad
0 %
Excited
Excited
0 %
Sleepy
Sleepy
0 %
Angry
Angry
0 %
Surprise
Surprise
0 %