Continue shopping “TABAC by Maurer & Wirtz After Shave 6.7 oz for Men” has been added to your cart.
Donna Uomo by Lilian Barony Eau De Toilette Spray 1.7 oz for Men
Add to wishlistAdded to wishlistRemoved from wishlist 0
Eau De Toilette Spray 1.7 oz
$32.00 $9.00
global $city;
global $product;
global $wpdb;
if ($city) {
$geo = explode("_", $city);
$res = $wpdb->get_results("select * from wp_page_generator_area_codes where city != ''", ARRAY_A );
foreach ($res as $r) {
if (sanitize_title($r['city']) == $geo[1]) {
$geo_city = $r['city'];
$geo_id = $r['id'];
}
if (sanitize_title($r['country']) == $geo[0]) {
$geo_country = $r['country'];
}
}
?>