/** * Change product images on a single product page for mobile - ussue "properly size images" page speed */ add_action( 'init', function() { // If not mobile device do nothing. if ( ! wp_is_mobile() ) { return; } add_filter( 'woocommerce_gallery_image_size', function ( $size ) { // Using the size check we apply the new thumbnail size to the main image only not to gallery thumbnails. return 'woocommerce_single' === $size ? 'woocommerce_thumbnail' : $size; } ); } );
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter