I have created 4 sliders. Initially all 4 are hidden (display:none) so I have used this code to display the relevant slider on click of its respective category.
The slid
Fast solution:
.bx-clone{ display: none !important; }
If you don't want to lose the infiniteLoop animation:
onSliderLoad: function() { $("YOUR_SLIDER_SELECTOR").css( "-webkit-transform", "translate3d(-" + YOUR_SLIDER_WIDTH + "px, 0, 0)" ); }