Hi,
I need export all our products with describtions, prices, photo etc. from Shopify (our store) in XML
I know We can do this in CVS but We need this in XML.
Can you give me instructions how I can do this?
Hi,
I need export all our products with describtions, prices, photo etc. from Shopify (our store) in XML
I know We can do this in CVS but We need this in XML.
Can you give me instructions how I can do this?
Unfortunately, Shopify does not provide a built-in option to export products in XML format directly from the admin dashboard. However, there is a workaround to achieve this by creating a custom XML feed using a new page template in your theme.
From your Shopify admin, go to “Online Store” > “Themes”. Click on the “Actions” button next to your active theme, and select “Edit code”. In the left sidebar, under the “Templates” folder, click “Add a new template”.
Create a new template for a page, and name it “xmlfeed” (without quotes). Replace the entire content of the new page.xmlfeed.liquid
file with the following code:
```liquid
{% layout none %}
Save the changes to the `page.xmlfeed.liquid` file. Go to "Online Store" > "Pages" in your Shopify admin, and click "Add page". Create a new page with the title "XML Feed" (or any title you prefer). In the "Template" section on the right, choose "page.xmlfeed" from the "Template suffix" dropdown menu. Save the new page.
Now, you can access the XML feed of your products by visiting the URL of the newly created page (e.g., `[https://yourstorename.com/pages/xml-feed](https://yourstorename.com/pages/xml-feed)`). You can right-click on the page and choose "Save as" to save the XML file on your computer.
Keep in mind that this feed will be publicly accessible, so consider password-protecting the page or restricting access to the feed if you don't want it to be publicly available.
Google (as of 7/7/23) claims that
error_outline
Invalid attribute name: This attribute name is not allowed. It may contain punctuation or conflict with an official attribute.
2914
error_outline
Too many column delimitersYour items contain more attributes than those specified in the header row.
119
Hello
I am facing the same error
any insights on that ?