Created
March 12, 2019 18:59
-
-
Save aatronco/90e4867b8c326f397e27367b0f4e12a3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% 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