Looking for a way to use slick carousel and be able to change the amount of time the slide is displayed on an individual slide basis.
In case I'm not explaining it well, assume I have 5 slides. I want to be able to define the display of slide one for 5s, slide 2 for 10s, slide 3 for 7s, etc...
May be you can have a look here: https://wordpress.org/plugins/wp-slick-slider-and-image-carousel/
Hope that helps!
I was looking for the same thing but since I did not find any answer to setting an individual slide duration I built it with a recursive function that calls the 'slickNext' after timeout. The duration for each slide is stored in a data-attribute and then I save all durations in a list.
See full example: http://codepen.io/calsal/pen/rLwydX
Yes.You can use bootstrap carousel and set the "data-interval" attribute based on your requirement.
Refer: How to change the interval time on bootstrap carousel?
The above accepted question only works if your Slickslider fades to the next slide. If you use the default settings of Slick, the slider creates cloned slides, which means your data-attribute will be placed on a different slide, and the timing will be off for once in a while.
The code profided below will fix this problem.