deactivate product-page image slider on mobile

Ok I found the solution, with this code in functions.php:

add_action( 'after_setup_theme', 'remove_hemen_theme_support', 100 );
function remove_hemen_theme_support() { 
    remove_theme_support( 'wc-product-gallery-zoom' );
    remove_theme_support( 'wc-product-gallery-lightbox' );
    remove_theme_support( 'wc-product-gallery-slider' );
}

The line remove_theme_support( 'wc-product-gallery-slider' ); deactivate the slider.