Viewing 3 replies - 1 through 3 (of 3 total)
  • The slider is based on FlexSlider script by WooThemes and the auto slide was left out intentionally.

    You’d need to dig in to the original script and add in what was omitted to get it auto slide.

    try this

    jQuery(document).ready(function(){
      var timeout=5;
      var current=1;
      function auto_slide(){
        if(current==-1)
          return false;
    
        jQuery('#featured-content .slider-next').eq(current%jQuery('#featured-content .slider-next').length).trigger('click',[true]);
        current++;
      };
    
      setInterval(function(){auto_slide()},timeout*1000);
    });
    rich_LJU

    (@rich_lju)

    beginner’s question: where would that piece of code go?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to rotate featured slider images autometically’ is closed to new replies.