test

{% comment %} Tabbed interface to display products filtered by different tags {% endcomment %}

Products with Tag 1

    {% for product in collections.all.products %} {% if product.tags contains "Ghana" %}
  • {{ product.title }} - {{ product.price | money }}
  • {% endif %} {% endfor %}

Products with Tag 2

    {% for product in collections.all.products %} {% if product.tags contains "Jamaica" %}
  • {{ product.title }} - {{ product.price | money }}
  • {% endif %} {% endfor %}

Products with Tag 3

    {% for product in collections.all.products %} {% if product.tags contains "Nigeria" %}
  • {{ product.title }} - {{ product.price | money }}
  • {% endif %} {% endfor %}