Please set as Auto News Carousel start without having to click the arrow? I have a set interval, but rotates to click.
2 Answers
Hi Mirek,
To resolve this issue, please add the following code to wp_footer in Dashboard / Appearance / Customize / Custom code
<script>
jQuery(function($) {
$('.carousel').each(function(){
if( $(this).data('interval') > 0 ) {
$(this).carousel();
}
});
});
</script>
Hope this helps !
SUPER Wilfred! It works. Big thanks for the help.
Please login or Register to submit your answer