How To
Answers to the most frequent questions you may have when using the Mulwi Shopping Feeds app.
How to show the full path for collections
{{ variant.collection_titles | join: ' > ' }}
How to fix invalid GTIN for a google shopping feed
You can use barcode variable:
- XML
- CSV
<g:gtin><![CDATA[{{ variant.barcode }}]]></g:gtin>
gtin :: {{ variant.barcode }}
How to add a specified image in the feed
- XML
- CSV
<g:image_link><![CDATA[{{ variant.parent_image_urls | index:9 }}]]></g:image_link>
image_url :: {{ variant.parent_image_urls | index:9 }}
How to set store URL for the second language
- XML
- CSV
<link><![CDATA[{{ variant.url | replace: 'https://store.com/en', 'https://store.com/de' }} ]]></link>
link :: {{ variant.url | replace: 'https://store.com/en', 'https://store.com/de' }}