Help with a jQuery Carousel

To initiate slick carousel, you need to add the below script in your theme’s footer or header (or anywhere else that is loaded with the page) :

<script defer type="text/javascript">
        $(document).ready(function(){$('.myDIV').slick({autoplay:true});});
</script>

Remember the change myDIV to the class name of a division which is holding subdivisons (parent DIV containing the slides).