Thay đổi image size woocommerce: có thể nói bất cứ dự án nào sử dụng woocommerce để phát triển thì chúng ta đều phải custom image size theo yêu cầu. Dưới đây là code của nó
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
//change image at product single (big image at gallery) function change_woocommerce_image_size_single($size){ $size['width'] = 600; $size['height'] = 600; $size['crop'] = 1; return $size; } add_filter( 'woocommerce_get_image_size_single', 'change_woocommerce_image_size_single'); //small image below image gallery function change_woocommerce_image_size_gallery_thumbnail($size){ $size['width'] = 150; $size['height'] = 150; $size['crop'] = 1; return $size; } add_filter( 'woocommerce_get_image_size_gallery_thumbnail', 'change_woocommerce_image_size_gallery_thumbnail'); //image at shop page function change_woocommerce_image_size_thumbnail($size){ $size['width'] = 300; $size['height'] = 300; $size['crop'] = 1; return $size; } add_filter( 'woocommerce_get_image_size_thumbnail', 'change_woocommerce_image_size_thumbnail'); |
Mọi sự sao chép xin ghi rõ nguồn là fcwordpress.net
Chuyên trang về wordpress: hướng dẫn thiết kế theme, plugin, thủ thuật wordpress