Shopify » Custom objects (JSON)
{
"make": "Audi",
"model": "RS6"
}{% assign car = product.metafields.accentuate.specs.value %}
<p>My car is the brand new {{ car.make }} {{ car.model }}</p><script>
let car = {{ product.metafields.accentuate.specs.value }}
alert('My car is the brand new ' + car.make + ' ' + car.model);
</script>Last updated