• Resolved toddbenton

    (@toddbenton)


    Hi,

    Great plugin. One question: How do I change the timing of the slides transition when using the Randomizer Slideshow widget? I need it to be a little slower. It’s too fast to read the whole thing.

    I looked in the CSS but couldn’t figure it out.

    Thanks, Todd

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Dominykas

    (@dominykasgel)

    Hi Todd,

    Very sorry for the late reply.

    You need to use a filter to filter out the arguments, then you can change the timing. I wrote it for you. You need to add it to your theme’s functions.php file. Just copy the code below.

    function change_cr_slideshow_speed( $arguments ) {
    	$speed = 6000; // AutoPlay Timeout Speed in Milliseconds. 1000 = 1 second.
    
    	$arguments = 'singleItem:true, items:1, autoplay:true, autoplayTimeout:'. $speed .', autoplayHoverPause:true, dots:false, loop:true';
    
    	return $arguments;
    }
    add_filter( 'elm_rt_slideshow_args', 'change_cr_slideshow_speed' );

    It will set the time to 6 seconds. You can change it by changing the numbers in $speed = 6000;
    6000 is in milliseconds. If you want to set the timing to 10seconds, then you need to write 10000.

    Unfortunately, we don’t have an option to control these things in admin. Maybe we’ll add it later.

    Hope this helps!

    Plugin Author Dominykas

    (@dominykasgel)

    Closing.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Timing of slide show’ is closed to new replies.