Is there any app or somewhere i can find all the tags i have used ?
Topic summary
The original poster seeks a way to view all tags used across their Shopify store.
Solutions provided:
-
Export products: Download the product CSV from Shopify (tags appear in the fifth column), then use spreadsheet functions to extract and sort unique values.
-
Direct JSON access: Visit
https://example.myshopify.com/admin/products/tags.jsonin the admin panel to see all tags in JSON format. -
Power Query method: Export products via Shopify or Matrixify, then use Excelβs Power Query to split tags by delimiters, trim whitespace, remove blanks/duplicates, and generate a clean unique tag list.
The discussion remains open with no confirmation of which solution the original poster adopted.
Did you find a solution now?
When you export all of your products, the fifth column over is βtagsβ
Just export that, then you can split it, then run unique values for the entire range and add a sort to alphabetize. Bam.
@Aggelos23 you can visit your admin now at https://example.myshopify.com/admin/products/tags.json to see all tags
Export your products via shopify or matrixify (the tags should be inside the exported file). Then
- Data β Get Data β From Text/CSV
β choose your CSV file and click Transform Data. - In the Power Query window:
-
Select the column that contains the tags.
-
Go to Split Column β By Delimiter.
-
Enter the delimiters
, ; |and click Advanced options β Split into Rows.
-
- Go to Transform β Format β Trim
(this removes extra spaces). - Go to Home β Remove Rows β Remove Blank Rows.
- Still under Home, choose Remove Duplicates.
- Finally, click Home β Close & Load
to load the unique tag list back into Excel.