I have a web page where I sell products and have the following URL:
www.myserver.com/en/xxxxx
"/ en" is the language
"/ xxxxxx" references content from the product page
Depending on the user's IP address, I know which country resides and depending on the country the price of the product may vary.
That is, the price of product X in Spain is 39.99 € and the same product in Uruguay is priced at $ 44.
In my code I instruct Google meta tags by price and currency for Spain as follows:
<meta content = "EUR" itemprop = "pricecurrency" />
<meta content = "39.99" itemprop = "price" />
And for Uruguay:
<meta content = "USD" itemprop = "pricecurrency" />
<meta content = "44" itemprop = "price" />
Is there a way to indicate to Google the country for which is valid the content of the page?
Thanks in advance :)