mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-04 12:22:24 +08:00
10 lines
336 B
Text
10 lines
336 B
Text
add_filter( 'woocommerce_product_is_visible', 'wc_hide_product_if_country', 999, 2 );
|
|
|
|
function wc_hide_product_if_country( $visible, $product_id ){
|
|
$location = WC_Geolocation::geolocate_ip();
|
|
$country = $location['country'];
|
|
if ( $country == "IT" && $product_id === 344 ) {
|
|
$visible = false;
|
|
}
|
|
return $visible;
|
|
}
|