The only other plugin that deals with Geolocation related stuff is WooCommerce Geolocation Based Products – this is another one that we have had in place for many years…
I do have the following code in our child theme functions.PHP file:
Do we think that might be the challenge?
function addPriceSuffix($format, $currency_pos) {
switch ( $currency_pos ) {
case ‘left’ :
$currency = get_woocommerce_currency();
$format = ‘%1$s%2$s ‘ . $currency;
break;
}
return $format;
}
add_action(‘woocommerce_price_format’, ‘addPriceSuffix’, 1, 2);
function my_remove_variation_price( $price ) {
$price = ”;
return $price;
}