[Special Summer Sale] 40% OFF All Magento 2 Themes

Cart

Show All Color Variants on Collection page in Shopify using Brooklyn Theme

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #9602
    dezefy
    Participant

    Look at the codes below.

    <ul class="colorlist"> 
     {% for option in product.options %}
     {% if option == 'Color' %}
     {% assign index = forloop.index0 %}
     {% assign colorlist = '' %}
     {% assign color = '' %}
     {% for variant in product.variants %}
     {% capture color %}
     {{ variant.options[index] }}
     {% endcapture %}
    
     {% unless colorlist contains color %}
      {% if variant.available %}
    
      <li id="{{ variant.id }}" title="{{ variant.inventory_quantity }} In Stock" class="instock"><a href="{{ product.url | within: collection }}?variant={{ variant.id }}" style="background:{{ color | downcase }}">{{ color | downcase }}</a></li>
    
      {% else %}
    
      <li id="{{ variant.id }}" title="Out of Stock"  class="outstock" >{{ color | downcase }}</li>
    
      {% endif %}
    
    {% capture tempList %}
    {{colorlist | append: color | append: " " }}
    {% endcapture %}
    {% assign colorlist = tempList %}
    {% endunless %}
    {% endfor %}
    {% endif %}
    {% endfor %}
    </ul>
    

    The code above can display the available colors of a product in collection page. You can take the same loop structure and display the entire product grid instead of just displaying the variant name.

    #9601
    ibrahim
    Participant

    Hey i am using brooklyn theme in my shopify website. I have different products will color variants . When i click on collection page i want to show all color variants of that products as separate products. I am googling since last night any help please.

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.