Home Forums WoodMart support forum Modify Woodmart Slider Speed Reply To: Modify Woodmart Slider Speed

#167317

Hello,

I don’t say that we don’t have rotate function in our theme, I said that we don’t have an option inside the theme settings to change the speed.

Try the below code snippet to the child theme functions.php file :
add_filter('woodmart_slider_autoplay_speed', function(){
	return 7000;
});

Best Regards.