How to add Slick slider in Magento 2 Custom theme
- March 5, 2023
No Comments
Follow these easy step for adding Slick slider in Magento 2 Custom theme
1.) Download the Slick library
2.) Include css files in theme .copy slick.less and slick-theme.less to the /web/css/source folder. Also add both files to /web/css/source/_extend.less.
@import "slick.less";
@import "slick-theme.less";
3.) update the theme’s requirejs-config.js file.
theme_path/requirejs-config.js
var config = {
paths: {
slick: 'js/slick.min'
},
shim: {
slick: {
deps: ['jquery']
}
}
};
4.) After these steps, clear the cache and perform a static content deployment.
Now you can use the slider in any phtml file by initializing the slider
<ul class="my-product-slider">
<li>1st Product</li>
<li>2nd Product</li>
<li>3rd Product</li>
<li>4th Product</li>
<li>5th Product</li>
<li>6th Product</li>
<li>7th Product</li>
<li>8th Product</li>
</ul>
<script>
require([
'jquery',
'slick',
'domReady!'
], function ($) {
$(".my-product-slider").slick({
dots: true,
infinite: true,
speed: 300,
slidesToShow: 4,
slidesToScroll: 1
});
});
</script>
Please contact us for Magento 2 theme customizations and Magento 2 frontend development Contact .
About us and this blog
We are a digital magento 2 development agency with a focus on helping our customers achieve great results across several key areas.
More From Our Blogs
See all posts
Meet Magento Netherlands 2025 🇳🇱 is one of the most anticipated Magento events in Europe, bringing…
In the world of Magento development, speed and performance have become critical ranking factors. With Google’s…
Running a successful Magento 2 store requires more than a great theme and product catalog. Extensions…
In this third part of the series, we build a custom block + template using Hyvä’s…
Hyvä uses TailwindCSS for styling and Alpine.js for interactivity — a much cleaner alternative to KnockoutJS.…
Now that Hyvä Theme is Open Source, developers finally have access to a modern Magento frontend…
No Comments
Recent Posts
- Meet Magento Netherlands 2025 🇳🇱 — The Ultimate Magento Event You Cannot Miss November 25, 2025
- Why Magento-Services.com Is the Leading Hyvä Development Agency in 2025 November 22, 2025
- 10 Essential Magento 2 Extensions to Supercharge Your Online Store in 2025 November 22, 2025
All Website Tags
custom module
Magento2
Magento 2 custom block
Magento 2 custom controller
Magento 2 custom layout
Magento 2 custom module
Magento 2 custom module development
Magento 2 custom template
Magento 2.4.6
Magento 2.4.6 developer in United Kingdom
Magento 2.4.6 development in United Kingdom
Magento 2.4.6 update services in United Kingdom
Magento 2.4.6 version upgrade services in United Kingdom
Magento security
PHP8.2
product slider
slick
slider
Upgrade to PHP8.2