Category ▾
Furniture ▾
Lighting ▾
Décor and Accessories ▾
Availability
Price ▾
{% for collection in collections %}
{% for product in collection.products %}
{% assign is_in_outdoor = false %}
{% assign is_in_indoor_or_explore_indoor = false %}
{% for product_collection in product.collections %}
{% if product_collection.title == "Outdoor" %}
{% assign is_in_outdoor = true %}
{% endif %}
{% if product_collection.title == "Indoor" or product_collection.title == "Explore Indoor" %}
{% assign is_in_indoor_or_explore_indoor = true %}
{% endif %}
{% endfor %}
{% if is_in_outdoor %}
{% unless is_in_indoor_or_explore_indoor %}
{% endunless %}
{% endif %}
{% endfor %}
{% endfor %}
{{ product.title }}
{% assign price_numeric = product.price | money_without_currency | remove: ',' | remove: '.00' %} {% assign price_integer = price_numeric | round %}{{ product.price | money}}
Collections: {% for product_collection in product.collections %} {{ product_collection.title }}{% if forloop.last == false %}, {% endif %} {% endfor %}
{% if product.available %} {% else %} {% endif %}