Why isn't my homepage slideshow auto-scrolling?

The slideshow on the home page of the site https://mexitan.myshopify.com/ is not auto scrolling. The theme was built using Timber. I went through the code, but I didn’t find anything off. And no major changes have been made to the theme.

There is a piece from your timber.js asset*:*

/*================ INIT ================*/
  /**
   * SLICK homepage slideshow init
   */
  $('#homeSlideShow').slick({
    arrows: true,
    autoplay: false,  /* this should be true */
    infinite: true,
    speed: 1000,  /* 1 second is probably too fast */
    fade: true,
    cssEase: 'linear'
  });
1 Like

Thank you! I set the boolean to true and increased the speed to 2.2 seconds and it looks great now!