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