Main issues: product size tags (e.g., 7", 10", 12", LP, Limited) are not appearing on product pages, and the checkout shows a cart label “Cart 1” that needs renaming to “my cart.”
Recent guidance: Initially, it was suggested to use tags like 7" or 12" and watch for themes that might not handle quote characters. Clarification followed that Shopify tags are for backend/admin organization and filtering, not automatically displayed on the frontend.
Technical approach: To show sizes on product pages, theme (Liquid) code must be added to the product template to conditionally render tags. A Liquid snippet was shared, and its correct placement within the product template is central to implementation.
Actions/next steps: The store owner will review the theme code and may seek help to implement the change; the helper offered informal assistance.
Status: The tag display issue requires theme edits and remains pending. The cart label renaming (“Cart 1” to “my cart”) was raised but not addressed in the thread and is unresolved.
I’m currently having issues with our content in that some of the data we need to tag our products with are not showing on our store. We retail dance music Vinyl and often these come in different sizes such as 7", 10" 12" , LP and Limited format. Could anyone help us to understand why this is not showing in the product pages?
In addition to that our cart is showing up on checkout as Cart 1 ( I am assuming that the developer was to lazy to give that a proper ID, just wondering how we rename this important aspect simply to my cart, we can’t seem to find this function in the cart set up we are running on the site.
Thanks for the quick response, should have mentioned that we are able to tag each individual items when we add it to our cms, but for some reason it’s not pulling through to the product page, is that a code issue, or a glitch with shopify?
Ohhhh I get it - sorry. The tag in shopify is merely for the backend and for filters. If you want to show it on the frontend you have to do that in code. It should be like this. But you’d have to finde the right place for it in your product template.
{% if product.tags contains '12"' OR product.tags contains '7"' %}
{{ product.tag }}
{% endif %}
So sorry for my very late reply, thank you for sharing this with me, I think that all makes sense and I will look at the code theme to see how complex that might be for us to implement ourselves, if not I will be back in touch, perhaps you can help us or let me know what is achievable and fee for your time. thanks in advance. Gavin