Collections

Topic summary

A user working with Shopify’s Dawn theme seeks guidance on creating a custom collection grid layout, sharing a reference screenshot from another Dawn-based website.

Solutions Provided:

  • One contributor offered a custom Liquid code snippet with schema settings for configurable columns (2-6) and optional collection descriptions
  • Another user provided implementation instructions: navigate to Online Store → Customize → add Custom Liquid section, then paste the provided code
  • The code includes a loop through collections with image display functionality

Current Status:

  • The original poster shared their store URL (sundip1.myshopify.com) but was asked to provide the reference website URL from the screenshot for further investigation
  • Discussion remains open as contributors await the source website link to better understand the desired layout
Summarized with AI on November 2. AI used: claude-sonnet-4-5-20250929.

Hi there i mam working on Dawn theme and want to show collection like


above picture this section is also taken from a website which is built on Dawn theme can anyone guide me how to achieve this

you can use custom liquid to create something like this..

{% schema %}
{
  "name": "Custom Collection Grid",
  "settings": [
    {
      "type": "number",
      "id": "columns",
      "label": "Number of columns",
      "default": 4,
      "min": 2,
      "max": 6
    },
    {
      "type": "checkbox",
      "id": "show_description",
      "label": "Show collection description",
      "default": false
    }
  ],
  "blocks": [
    {
      "type": "collection",
      "name": "Collection",
      "settings": [
        {
          "type": "collection",
          "id": "collection",
          "label": "Collection"
        }
      ]
    }
  ],
  "presets": [
    {
      "name": "Custom Collection Grid",
      "category": "Collections"
    }
  ]
}
{% endschema %}

1 Like

can you guide me where to put this code

Hi @Nabeelshakil

Could you please share the sample store link where you got the screenshot from so I can investigate it further?

Looking forward to hearing from you soon. Thank you!

Best,
Daisy - Avada Support Team.

Go to online store, Click on Customize add new section where you want to show collections there is a custom liquid option in sections paste this code in custom liquid section


  
  
  
  

  
    

      
      {% for collection in collections %}
      {% if collection.image %}
      

        
          
          

            
          

        
      

      {% endif %}
      {% endfor %}
    

  

  

https://sundip1.myshopify.com/

Hi @Nabeelshakil

I mean the sample store from which you got the screenshot. This screenshot I mean: https://prnt.sc/IplzVia7te_H