add_filter( 'woocommerce_single_product_carousel_options', function( $options ) {
$options['slideshow'] = true; // enable auto slideshow
$options['slideshowSpeed'] = 2000; // time in millesecond between slides
return $options;
}, PHP_INT_MAX );