Skip to content

Instantly share code, notes, and snippets.

@aatronco
Created March 12, 2019 18:59
Show Gist options
  • Select an option

  • Save aatronco/90e4867b8c326f397e27367b0f4e12a3 to your computer and use it in GitHub Desktop.

Select an option

Save aatronco/90e4867b8c326f397e27367b0f4e12a3 to your computer and use it in GitHub Desktop.
{% assign FBT = order.products.first.field["Frequently Bought Together"].value | split: "," %}
<div class="row nogutter">
{% for prod in FBT %}
{% assign product = products.product[prod] %}
<div class="col-md-3 col-6">
<div class="main-category-image">
{% include 'list_product' with product %}
</div>
</div>
{% endfor %}
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment