Mirek Kroupa
asked 10 years ago

Please set as Auto News Carousel start without having to click the arrow? I have a set interval, but rotates to click.

2 Answers
Wilfred
answered 10 years ago

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 !

Mirek Kroupa
answered 10 years ago

SUPER Wilfred! It works. Big thanks for the help.

Powered by DW Question & Answer Pro