How to Create a Custom Product Slider in Shopify Home Page Without App | Easy & Recommended Way Post author:Ramzan Post published:January 5, 2022 Post category:Shopify Post comments:0 Comments 1. Go to Themes -> Actions -> Edit code -> Sections 2. Create new file collection-slider.liquid in Sections Copy the code of collection.liquid file and paste complete code to new file collection-slider.liquid 3. Replace this code: {%- assign product_limit = section.settings.grid | times: section.settings.rows -%} Replace with below: {%- assign product_limit = 12 -%} 4. Replace this code: <ul class="grid grid--uniform grid--view-items"> Replace with below: <ul data-slides={{section.settings.grid}} class="grid grid--uniform grid--view-items collection-slider"> 5. Add below CDN of slick slider and jQuery in theme.liquid file at the end before close body tag