Hi,
I have the same issue as in https://github.com/kenwheeler/slick/issues/1402 which was closed and not resolved.
Link to code with issue: http://codepen.io/anon/pen/ZbYQWz?editors=101
Steps to replicate issue:
Video how to replicate the issue: http://screencast-o-matic.com/watch/coQejcfEhk
+1
+1
+1
+1
+1
+1
+1
This will be fixed soon
Hello. Sorry for bad english. I really cant understand this issue.
1 and 3 sentences cant understand help me @pauliusg
It is basically saying that the original elements are lost after a breakpoint change.
var filtered = false;
$('.product-button').on('click', function () {
var filtername = $(this).attr('id');
var currentclass = $(this).attr('class');
if (filtered === false) {
$('.product-carousel').slick('slickUnfilter');
$('.product-carousel').slick('slickFilter', '.filter-' + filtername);
$(this).attr('class', filtername + ' product-button');
} else {
$('.product-carousel').slick('slickUnfilter');
$('.product-carousel').slick('slickFilter', '.filter-' + filtername);
$('.product-carousel').slickGoTo(0);
$(this).attr('class', filtername + ' product-button');
filtered = false;
}
});
What should i change here? Sorry for asking bad things.
It's not your code, I need to fix it.
Okay thank you for attention. I will try :)
If you wanna give it a shot, look at the filter method where the current slides get saved. You'll want to store them on the instance, rather than on the mutable current options object.
Still an issue :/
+1
Working on it
+1
Any update on this @kenwheeler ?
+1
Sorry, but even after updating to 1.5.8 I am still having issues when using slick filter with breakpoints. Fine when not in breakpoints. See https://github.com/kenwheeler/slick/issues/1701#issuecomment-138279616 for my current code.
@slr1979 The fix is on master, it will be released in 1.5.9. You can grab slick.js right off of github and the fix is there.
@kenwheeler Sorry, admittedly I was using slick.min.js. However, even using the master slick.js did not resolve the issue. In fact the filter has stopped working even when not within a breakpoint? It's like it does not reinitialise when I click another filter?
@slr1979 are you not unfiltering before filtering again?
@kenwheeler.....if you are referring to ''slickUnfilter'' I don't think I am actually. I didn't think of that as it worked without it outside the breakpoints. Would you be able to advise me on how I would use ''slickUnfilter'' in my existing click code?
var $optionSets = $('#filters'),
$optionLinks = $optionSets.find('a');
$optionLinks.click(function() {
var $this = $(this);
if ($this.hasClass('selected')) {
return false;
}
var $optionSet = $this.parents('#filters');
$optionSets.find('.selected').removeClass('selected');
$this.addClass('selected');
var selector = $(this).attr('data-filter');
container_slick.slick('slickFilter', selector);
return false;
});
My apologies for being a bit thick.
You could just call container_slick.slick('slickUnfilter'); right before you call filter.
Bingo! All fixed in conjunction with updated slick.js. No problems with breakpoints now either. Thanks so much @kenwheeler
anytime! @slr1979
Most helpful comment
You could just call container_slick.slick('slickUnfilter'); right before you call filter.