• Resolved lucspe

    (@lucspe)


    Hi,

    Is there a way to increase max Autoplay Speed and Transition Speed values beyond 10000 and 5000, respectively?

    In my use case I would need higher values. It seems that the max values are hardcoded in the .js files so not sure if there is a way to override that.

    Thanks

Viewing 1 replies (of 1 total)
  • Plugin Support Team Brainstorm Force

    (@brainstormteam)

    Hey @lucspe ,

    Thank you for reaching us out.
    You can paste this code to your funtions.php file to change the Autoplay speed and Transition speed.

    add_filter( 'uagb_testimonials_slick_options', function( $attr, $id ) {
    	$attr['autoplaySpeed'] = 20000; // Autoplay Speed.
    	$attr['speed'] = 7000; // Transition Speed.
    
    	return $attr;
    }, 10, 2 );

    I hope this helps you.

    Regards,
    Vrunda Kansara

Viewing 1 replies (of 1 total)
  • The topic ‘Increasing max Autoplay Speed/Transition Speed values’ is closed to new replies.