{% for badge in productBadges %}
{% if product.tags contains badge.tag %}
{% assign exclusions = badge.collection_exclusion | split: ',' %}
{% assign inclusions = badge.collection_inclusion | split: ',' %}
{% assign render = true %}
{% if inclusions.size > 0 %}
{% assign render = false %}
{% if inclusions contains collection.handle %}
{% assign render = true %}
{% endif %}
{% endif %}
{% if exclusions contains collection.handle %}
{% assign render = false %}
{% endif %}
{% if render %}
{% if badge.image %}
{% endif %}
{{ badge.text }}
{% endif %}
{% endif %}
{% endfor %}
{{ title }}
{{ subtitle }}
{{ price }}
{% assign discount_percentage = product.compare_at_price | minus: product.price | times: 100.0 | divided_by: product.compare_at_price | round %} {% assign product_price = product.price | plus: 0 %} {% if product.compare_at_price > product_price and discount_percentage >= 10 %}
{% for badge in productBadges %}
{% if product.tags contains badge.tag %}
{% assign exclusions = badge.collection_exclusion | split: ',' %}
{% assign inclusions = badge.collection_inclusion | split: ',' %}
{% assign render = true %}
{% if inclusions.size > 0 %}
{% assign render = false %}
{% if inclusions contains collection.handle %}
{% assign render = true %}
{% endif %}
{% endif %}
{% if exclusions contains collection.handle %}
{% assign render = false %}
{% endif %}
{% if render %}
{% if badge.image %}
{% endif %}
{{ badge.text }}
{% endif %}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}