Hi, can anyone help with why the below product doesn’t show Sold-Out sticker
https://quiet-affair.com.au/collections/dresses/products/copy-of-copy-of-copy-of-copy-of-ursula-dress
access pw is: tebrig
Under: Collections: Dresses
If I manually add the product to another sticker collection (ie. Coming Soon collection), then the “Sold Out” sticker appears, but is not appearing as it should for 0 stock products.
{% comment %} Check if sticker holder should be displayed {% endcomment %}
{% if collection_handles contains 'best-seller' or
collection_handles contains 'coming-soon' or
collection_handles contains 'new' or
collection_handles contains 'pre-order' or
collection_handles contains 'staff-pick' or
product_on_sale %}
{% if collection_handles contains 'best-seller' %}
{{ 'collections.general.best_seller' | t }}
{% endif %}
{% if collection_handles contains 'coming-soon' %}
{{ 'collections.general.coming_soon' | t }}
{% endif %}
{% if collection_handles contains 'new' %}
{{ 'collections.general.new' | t }}
{% endif %}
{% if collection_handles contains 'pre-order' %}
{{ 'collections.general.pre_order' | t }}
{% endif %}
{% if product.available and product_on_sale %}
{{ 'collections.general.sale' | t }}
{% endif %}
{% unless product.available %}
{{ 'collections.general.sold_out' | t }}
{% endunless %}
{% if collection_handles contains 'staff-pick' %}
{{ 'collections.general.staff_pick' | t }}
{% endif %}
{% endif %}
.thumbnail-sticker.sold-out-sticker {
background-color: {{ sale_sticker_color }};
color: {{ sale_sticker_color_text }};
.thumbnail-overlay__container .sold-out {
color: {{ settings.product_hover_text_color }};

