This file contains 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
<form action="/cart/add" method="post" enctype="multipart/form-data" id="AddToCartForm"> | |
{% if collection.products_count > 0 %} | |
{% for product in collection.products %} | |
{% if product.available %} | |
<div class="row"> | |
<div class="col-xs-12 col-sm-4"> | |
<img src="{{ product.image | default: product.featured_image | img_url: 'large' }}" alt="{{ variant.title | escape }}" /> | |
</div> | |
<div class="col-xs-12 col-sm-8" style="padding: 15% 40px 0"> | |
<div class="col-xs-12 col-sm-12"> |
This file contains 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
{% comment %} | |
Feature Multiple Collections & Products on Shopify Using Link List | |
Created by Minion Made //. minionmade.com | |
{% endcomment %} | |
{% capture uses_minimal_framework %}{% include 'product-loop' %}{% endcapture %} | |
{% if uses_minimal_framework contains 'Liquid error' %} | |
{% assign uses_minimal_framework = false %} | |
{% assign grid_item_width = 'col-xs-12' %} |