Hello. Is there any way to force right/left buttons to always appear even if they are not needed? For example, https://kenwheeler.github.io/slick/ there is an "Add & remove" example and no buttons is shown initially - how can I override this behavior? Thanks in advance!
To make left & right buttons appear always, add arrows:false to your settings
$('.carousel-selector').slick({
...
arrows: false,
...
});
and then tie the buttons/links you want to use as left & right buttons to slick as below
$('.left-selector').on('click', function(){
$('.carousel-selector').slickNext();
});
$('.right-selector').on('click', function(){
$('.carousel-selector').slickPrev();
});
Hope this helps.
@metinucar Yeah, really, that is the easiest way. Thank you!
Most helpful comment
To make left & right buttons appear always, add
arrows:falseto your settingsand then tie the buttons/links you want to use as left & right buttons to slick as below
Hope this helps.