Shop

{% if products.featured != blank %}

{% else %}

No products found.

{% endif %}

{% if theme.show_newest %}

Newest Products

{% if products.newest != blank %}
    {% for product in products.newest limit:3 %}
  • Image of {{ product.name | escape }}
  • {% endfor %}
{% else %}

No products found.

{% endif %}
{% endif %} {% if theme.show_top_selling %}

Top Selling

{% if products.top_selling != blank %}
    {% for product in products.top_selling limit:3 %}
  • Image of {{ product.name | escape }}
  • {% endfor %}
{% else %}

No products found.

{% endif %}
{% endif %}