Кастомный размер изображения товара для mobile view
Wed Nov 09 2022 11:37:07 GMT+0000 (Coordinated Universal Time)
Saved by
@mastaklance
/**
* 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;
}
);
}
);
content_copyCOPY
https://mikeyarce.com/2018/04/how-to-override-woocommerce-image-sizes/
https://stackoverflow.com/questions/74014669/separate-product-images-on-a-single-page-for-mobile
Comments