Hi can you help me please?
I need to hide the sold-out tag from my product catalog. I tried all the advice but it doesn’t work for my theme.
My url: https://www.energetikon.com/collections/all
Theme: Colorblock
Thanks for the answer
Best regards..
Hi can you help me please?
I need to hide the sold-out tag from my product catalog. I tried all the advice but it doesn’t work for my theme.
My url: https://www.energetikon.com/collections/all
Theme: Colorblock
Thanks for the answer
Best regards..
Hi,
In your theme code go to the ‘card-product.liquid’ and find this code:
{{- 'products.product.sold_out' | t -}}
All you have to is create a simple template for that collection. Then you can create the following code:
{% if collection.template_suffix != 'your name'%}
{{- 'products.product.sold_out' | t -}}
{% endif %}
Hey @Lajos
Follow these Steps:
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
A couple of things that are not super ideal about the solution you’re proposing.
This way you’re doomed to have issues in the future.
It works! Thank you very much…