Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi,

    Follow my instruction here to control speed/duration for slideshow –

    Step-1: Open your plugin directory and then open folder ultimate-responsive-image-slider

    Step-2: Here you will see a file name is uris-layout.php , Open it on any editor

    Step-3: Now go to near line no. 22 , at this line find below script

    <script type="text/javascript">
    	jQuery( document ).ready(function( jQuery ) {
    		jQuery( '#example3_<?php echo $post_id; ?>' ).sliderPro({
    			width: <?php if($WRIS_L3_Slider_Width != "") echo $WRIS_L3_Slider_Width; else echo "1000"; ?>,
    			height: <?php if($WRIS_L3_Slider_Height != "") echo $WRIS_L3_Slider_Height; else echo "500"; ?>,
    			autoplay: <?php if($WRIS_L3_Auto_Slideshow == 1) echo "true"; else echo "false"; ?>,
    			arrows: <?php if($WRIS_L3_Sliding_Arrow == 1) echo "true"; else echo "false"; ?>,
    			buttons: <?php if($WRIS_L3_Navigation_Button == 1) echo "true"; else echo "false"; ?>,
    			smallSize: 500,
    			mediumSize: 1000,
    			largeSize: 3000,
    			//fade: true,
    			thumbnailArrows: true,
    		});
    	});
    </script>

    Step-4: Replace it with below script code –

    <script type="text/javascript">
    	jQuery( document ).ready(function( jQuery ) {
    		jQuery( '#example3_<?php echo $post_id; ?>' ).sliderPro({
    			width: <?php if($WRIS_L3_Slider_Width != "") echo $WRIS_L3_Slider_Width; else echo "1000"; ?>,
    			height: <?php if($WRIS_L3_Slider_Height != "") echo $WRIS_L3_Slider_Height; else echo "500"; ?>,
    			autoplay: <?php if($WRIS_L3_Auto_Slideshow == 1) echo "true"; else echo "false"; ?>,
    			arrows: <?php if($WRIS_L3_Sliding_Arrow == 1) echo "true"; else echo "false"; ?>,
    			buttons: <?php if($WRIS_L3_Navigation_Button == 1) echo "true"; else echo "false"; ?>,
    			smallSize: 500,
    			mediumSize: 1000,
    			largeSize: 3000,
    			//fade: true,
    			thumbnailArrows: true,
    			autoplayDelay:5000 //	speed/duration for slideshow
    		});
    	});
    </script>

    Step-5: Here you can see an option is autoplayDelay:5000 , you can change slideshow speed by update this option.

    Step-6: Save your file and then test your slider.

    Let me know if you face any problem during this procedure.

    Thanks

    Hi,
    Is it possible to have the autoplay work/start up again, after a thumbnail has been clicked and the cursor is NOT moved from the clicked thumbnail?

    Thanks!

    Hi,

    Autoplay is start with page load, when you will going to hover on slide image then autoplay is going to be off.

    But there no possibility available for autoplay work/start up again, after a thumbnail has been clicked.

    Thanks

    Ok thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to change speed/duration for slideshow?’ is closed to new replies.