Which markup tag should you use if you have Multi-Currency website?
So many e-commerce sites are using multi-currency on their product pages, but getting confused when they implement structure data (rich card) to their web pages.
Google advice to create multiple price variant for multi-currency product pages. You can change the below mentioned example, as per your need:
Multiple Currency Markup Sample:
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Product",
"name": "Sample Product",
"image": [
"https://example.com/photos/1x1/photo.jpg",
"https://example.com/photos/5x3/photo.jpg",
"https://example.com/photos/20x8/photo.jpg"
],
"description": "Describe your product",
"mpn": "925872",
"brand": {
"@type": "Thing",
"name": "ACME"
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.4",
"reviewCount": "89"
},
"offers": [{
"@type": "Offer",
"priceCurrency": "USD",
"price": "119.99",
"priceValidUntil": "2020-11-05",
"itemCondition": "http://schema.org/UsedCondition",
"availability": "http://schema.org/InStock",
"seller": {
"@type": "Organization",
"name": "Executive Objects"
}},
{
"@type": "Offer",
"priceCurrency": "EUR",
"price": "100.99",
"priceValidUntil": "2020-11-05",
"itemCondition": "http://schema.org/UsedCondition",
"availability": "http://schema.org/InStock",
"seller": {
"@type": "Organization",
"name": "Executive Objects"
}}]
}
}
</script>
Google advice to create multiple price variant for multi-currency product pages. You can change the below mentioned example, as per your need:
Multiple Currency Markup Sample:
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Product",
"name": "Sample Product",
"image": [
"https://example.com/photos/1x1/photo.jpg",
"https://example.com/photos/5x3/photo.jpg",
"https://example.com/photos/20x8/photo.jpg"
],
"description": "Describe your product",
"mpn": "925872",
"brand": {
"@type": "Thing",
"name": "ACME"
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.4",
"reviewCount": "89"
},
"offers": [{
"@type": "Offer",
"priceCurrency": "USD",
"price": "119.99",
"priceValidUntil": "2020-11-05",
"itemCondition": "http://schema.org/UsedCondition",
"availability": "http://schema.org/InStock",
"seller": {
"@type": "Organization",
"name": "Executive Objects"
}},
{
"@type": "Offer",
"priceCurrency": "EUR",
"price": "100.99",
"priceValidUntil": "2020-11-05",
"itemCondition": "http://schema.org/UsedCondition",
"availability": "http://schema.org/InStock",
"seller": {
"@type": "Organization",
"name": "Executive Objects"
}}]
}
}
</script>
Comments