Since I don’t have a GTIN for my product, Google said my review feed would “perform” better if I add that I one or all of brand/sku/mpn. (FYI-I’m using Multifeeds for Google Shopping as the app for the feed).
Shopify Support suggested the following code to be placed in the product.liquid file after the text"Liquid error: This liquid context does not allow includes."
{% if product.vendor %}
<g:brand>{{ product.vendor | escape }}</g:brand>
{% endif %}
{% if product.variants.first.sku %}
<g:mpn>{{ product.variants.first.sku | escape }}</g:mpn>
{% endif %}
This code will add the brand information to the product feed using the “vendor” field in your Shopify product settings. It will also add the SKU information using the “sku” field in your product variants.
However, my theme (Parallax by Out of the Sandbox) does not have this text in that file. Is there another place to put the code?