Hi @napsty,
Thanks for reaching out to us. Sorry to hear about this issue here.
This is a known issue with WordPress with the Kosovo (XK) missing. However, could try this snippet here:
add_filter( 'woocommerce_countries', 'snippetpress_add_kosovo' );
function snippetpress_add_kosovo( $countries ) {
$new_countries = array(
'XK' => __( 'Kosovo', 'woocommerce' ),
);
return array_merge( $countries, $new_countries );
}
add_filter( 'woocommerce_continents', 'snippetpress_add_kosovo_to_continents' );
function snippetpress_add_kosovo_to_continents( $continents ) {
$continents['EU']['countries'][] = 'XK';
return $continents;
}
See the article here:
https://snippetpress.com/add-kosovo-to-list-of-woocommerce-countries/
One thing to note that will only work with WooCommerce.
Let me know how it goes on your end.
Best,
Abz