How to disable Slick Slider arrows?

Erum-n picture Erum-n · Jun 23, 2015 · Viewed 25.3k times · Source

I'm using Slick sliders with two different styles, for my web page but I'm having a problem with arrows. Can you please help me?

This is my main .slider, I've styled it's prev and next arrows using CSS

http://prntscr.com/7kdpgo

And here I used .filtering class of Slick, but I don't want these arrows. How can I disable them here and add those in the design?

http://prntscr.com/7kdq03

Answer

user5929999 picture user5929999 · Feb 15, 2016
<script>
  $('#carouselclass').slick({
     slidesToShow: 3,
     slidesToScroll: 1,
     autoplay: true,
     autoplaySpeed: 1500,
    arrows : false,
  });
</script>