Skip to content

Instantly share code, notes, and snippets.

View Betialai's full-sized avatar
💭
I may be slow to respond.

Betialai

💭
I may be slow to respond.
View GitHub Profile
@lukecav
lukecav / functions.php
Created June 15, 2018 16:58
Remove specific country from WooCommerce country list
function wc_remove_specific_country( $country )
{
unset($country["PR"]);
return $country;
}
add_filter( 'woocommerce_countries', 'wc_remove_specific_country', 10, 1 );