Creation of a customer reviews carousel

Hello, good afternoon everyone. I would like someone to help me create a testimonials carousel that slides automatically and manually, with at least 6 review containers. Below is an example that should be compatible both with PC and the mobile version.

Thank you and good work.

Hi @Henrique_Feitoza1 ! Would you happen to have an example as a reference of what you’re trying to achieve?

Thanks!

2 Likes

I would like a testimonial carousel with 6 cards. The comments should rotate automatically but also allow manual navigation (arrows and indicators). The carousel should loop continuously, pause on hover, and support swipe on mobile devices.

Hi @Henrique_Feitoza1,

If you didn’t get this already sorted, here is the way to do it :

1) In Head HTML — add Slick CSS

<!-- Add the slick-theme.css if you want default styling -->
<link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/gh/kenwheeler/[email protected]/slick/slick.css"/>
<!-- Add the slick-theme.css if you want default styling -->
<link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/gh/kenwheeler/[email protected]/slick/slick-theme.css"/>

2) In Body HTML — add scripts + init

<script type="text/javascript" src="//code.jquery.com/jquery-1.11.0.min.js"></script> 
<script type="text/javascript" src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script type="text/javascript" src="//cdn.jsdelivr.net/gh/kenwheeler/[email protected]/slick/slick.min.js"></script>
<script>
$(document).ready(function(){
  $('.mySlick').slick({
    infinite: true,       // Enables infinite looping
    slidesToShow: 3,      // Number of slides to show at once
    slidesToScroll: 1,    // Number of slides to scroll at a time
    arrows: false,        // Disables navigation arrows
    dots: true,          // Disables navigation dots
    autoplay: true,       // Enables autoplay
    autoplaySpeed: 3000,  // Sets autoplay speed to 3 seconds
    responsive: [
      {
        breakpoint: 768,   
        settings: {
          slidesToShow: 1,  
          slidesToScroll: 1,
          arrows: false,
          dots: true
        }
      }
    ]
  });
});
</script>

3) How to use it on your Funnelish page

  • Add the class mySlick to the wrapper that holds your testimonials.
  • Inside that wrapper, place your 6 testimonial cards as direct container boxes.
  • With this config, it shows 3 cards on desktop and 1 on mobile.
  • You can tweak the numbers in slidesToShow and the responsive breakpoint to fit your design.

Hope this helps! We’d be happy to implement it for you—just share the funnel share link with us through Support.

Hey there,

You can import this template here which has the design built in and the custom code to make it work as a carousel: https://app.funnelish.com/share?funnel=913948&code=SHARE-bVZiURKBjq

See preview here: https://belen.funnelish.com/sliding-reviews

Once you added that funnel you can save the section as an asset so you can add it to whichever page.

Then make sure to copy what is under custom CSS and Body HTML and add it to that page as well.

These can be found in the page under CUSTOM CODES.

2025-09-03 at 14.56

Remember that in order for the code to load you will also need to have your page with your custom domain.

Let us know if you have any questions!

1 Like