Hi,
All single product listings in my store are showing the word " TITLE" above quantity.
How can I remove this?
I have attached the screenshot.
Hi,
All single product listings in my store are showing the word " TITLE" above quantity.
How can I remove this?
I have attached the screenshot.
Hi @Bewitched1 ,
Please open your theme code editor to remove it:
From your Shopify admin, navigate to Online Store > Themes > Actions > Edit code
Open the Assets/style.scss.css and paste this code at the bottom of the file:
.swatches-wrapper label, .swatch-title {
display: none !important;
}
I hope it helps.
Hiya,
Thanks for that.
We have some items where we need two different sizes displayed and some items with just the one option. When we use that code, the TITLE disappears on the single options which is great, but then so do the size options on the others.
Any advice?
Hello @Bewitched1
Please add below code in main-product.liquid above {% schema %} or product-template above {% schema %} whichever file exists.
{% if product.has_only_default_variant %}
{% endif %}