Hello,
I want to add this effect:
I’m esplaining: When you hover over the photos, you can see the remaining and sold sizes.
I use dawn theme, my website is womber.fr and password is PROPAGANDAAA
Thanks,
Cordially
Main issue: Add a hover effect on collection/product cards to display sizes with in-stock vs sold-out status in the Shopify Dawn theme.
Proposed solution:
Result shown:
Notes and gaps:
Status:
Unanswered points:
Hello,
I want to add this effect:
I’m esplaining: When you hover over the photos, you can see the remaining and sold sizes.
I use dawn theme, my website is womber.fr and password is PROPAGANDAAA
Thanks,
Cordially
And find file card-product.liquid and add this code before tag “
{% for variant in card_product.variants %}
{% if variant.inventory_quantity > 0 %}
{{ variant.title }}
{% else %}
{{ variant.title }}
{% endif %}
{% endfor %}