I wanted to show the arrows but when slidesToShow is equal to the total slides the arrows is not showing even the infinite is set to true, is there a way to show the arrows when slidesToShow is equal to the total slides or is it expected behavior of the slider?
I have check this thread ( Slick slider not loading slides if slidesToShow is equal to the total slides? ) it seems that the solution requires to change the core file of the library. Is there any way we don't change the core file.
Below is the codepen https://codepen.io/davecar21/pen/RwovWvB
$(document).ready(function(){
$('.carousel').slick({
infinite: true,
slidesToShow: 3,
slidesToScroll: 1,
lazyLoad: 'ondemand',
variableWidth: true,
responsive: [{
breakpoint: 720,
settings: {
slidesToShow: 2,
infinite: true
}
}],
arrow: true
});
});