Please advice how to export all the tags within the Shopify store in the following format
Tag1
Tag2
Tag3
Tag4 etc etc
I have more than 300 tags on my store
A user seeks to export over 300 product tags from their Shopify store in a simple list format (Tag1, Tag2, etc.).
Proposed Solutions:
Third-party apps: DataChamp can export tags within product exports, requiring manual removal of product data in Excel afterward. Ablestar offers a dedicated tool (shopify.tagreport.io) that scans stores and generates an Excel report listing all unique tags, usage counts, and admin linksâincluding tag prefix analysis if applicable.
Manual CSV method: Export all products (via Shopify or Matrixify), import the CSV into Excel using Power Query, isolate the tags column, split by delimiter, and remove duplicates to create a unique tag list.
Liquid code approach: For stores with under 1,000 tags, add a custom Liquid section to a page using the collection['all'].all_tags property on an âall productsâ collection to display or format tags directly.
The original poster found the first suggestion unhelpful but has not indicated whether other solutions were tested. The discussion remains open with multiple technical workarounds available.
Please advice how to export all the tags within the Shopify store in the following format
Tag1
Tag2
Tag3
Tag4 etc etc
I have more than 300 tags on my store
Hi @preetsumit
Unfortunately I do not know a way to export the tags alone. With our App DataChamp you can export the Tags within a Product export. Afterwards you could remove the Products in Excel with a formula.
This is the only solution I could find, I hope this helps! If you require any help with the set up of the App, just contact us!
Thanks, but it does not help much.
Thanks again
Hello @preetsumit
We have a tool that will scan your Shopify store and give you a report of all unique tags on your store. You can find it here: https://shopify.tagreport.io/
Once it has a list of all tags, it will determine if you use any tag prefixes and generate an Excel report for you.
The report will be emailed to you and contains a list of all your tags, the number of products using each tag, and links to the Shopify admin to view those products. If you use tag prefixes, those will will also be included as separate sheet in the report.
Hope this helps!
If it can help : export all products (from shopify or matrixify) with the tags => you get a csv with all product and their tags. Upload this csv to excel via Power query (Data â get data â launch powerquery). Then keep only the tags column and split by deleimiter (, or
and in advance tab, choose split by line, then clean all by removing spaces and group by. This way you get a list of all unique tags
For under 1k tags just use the theme system.
Add a custom-liquid section to some page and use the collection all_tags property on an âallâ products collection. âallâ collections can be made by just setting a condition for price greater than $0 for most shops.
Then use this liquid where âallâ is the handle of :
{{ collection[âallâ].all_tags }}
or
{%- assign tags = collection['all'].all_tags -%}
{%- for tags in tags -%}
{% comment %}build your custom formatting here {% endcomment %}
{{ tag }} {% unless forloop.last %},{% endunless %}
{%- endfor -%}