Я так бы сделал.
if(function_exists('geoip_detect2_get_info_from_current_ip')){
$location_code = geoip_detect2_get_info_from_current_ip()->country->isoCode;
if( $location_code !== 'UA'){
$classN = "no_UA";
}else{
$classN = "country_".$location_code;
}
}
потом для body написал бы типа:
<body class="<?= $classN ?>">
Потом в стилях:
.no_UA #custom_html-5{
display: none !important;
}
.no_UA #custom_html-2{
display: none !important;
}
.no_UA #zen_widget-3{
display: none !important;
}
Хз, может быдлокодерство, но я бы сделал так.