Add this loop in variant class -
{% for variant in product.variants %}
{% if variant.available == false %}
cross-mark
{% endif %}
Then add the style
.cross-mark:before { content: “x”; position: absolute; top: 5px; right: 5px; color: black; }
{% endfor %}
Was my reply helpful? Please Like and Accept Solution. This mean a lot to me.