Aggiungere un Paese alla lista dei Paesi WooCommerce
Se desideri aggiungere un Paese alla lista dei Paesi su WooCommerce, puoi utilizzare uno snippet da aggiungere al tuo file functions.php del tuo tema child Eccolo: function woo_add_my_country( $country ) { $country[“Codice-Paese”] = ‘Paese’; return $country; }add_filter( ‘woocommerce_countries’, ‘woo_add_my_country’, 10, 1 ); Es. Paese: DubaiCodice Paese: AE-DU