• Is it possible to have the video carousel scroll automatically? I’ve got basic CSS and even less PHP. I am working with the child theme set up. Thank you!

Viewing 1 replies (of 1 total)
  • Auto-advancing carousels are not recommended for both accessibility and usability reasons.

    As you can see at the top of js/jquery.flexslider.js the slider script is from:
    https://www.woothemes.com/flexslider/

    In their documentation, I found this:

    slideshow: true, //Boolean: Animate slider automatically

    In your child theme, try changing these lines in js/theme.js from this:

    $( '.featured-posts' ).flexslider( {
       animation: 'fade',
       slideshow: false
    } );

    To this:

    $( '.featured-posts' ).flexslider( {
       animation: 'fade',
       slideshow: true
    } );
Viewing 1 replies (of 1 total)
  • The topic ‘Video carousel to scroll automatically?’ is closed to new replies.