admin管理员组文章数量:1415697
We already use the 300x300 images in many places. The only places that still have 100x100 is the admin panel of Woocommerce, on the product list and then the product gallery inside the product creation page. Can we add something to functions to force the admin panel to also use 300x300 so we can delete every 100x100 image to free up inode usage?
We added the below code to functions, which changed the product gallery on the product page, but should this change the admin side too? we have also changed the base wordpress thumbnail size to 300. Maybe we just need to regerate all thumbnails then delete the 100x100? or delete then regenerate
// change woocommerce thumbnail image size
add_filter( 'woocommerce_get_image_size_gallery_thumbnail', 'override_woocommerce_image_size_gallery_thumbnail' );
function override_woocommerce_image_size_gallery_thumbnail( $size ) {
// Gallery thumbnails: proportional, max width 200px
return array(
'width' => 300,
'height' => 300,
'crop' => 0,
);
}
UPDATED for anyone who comes across this in future:
Just wanted to update this for anyone who comes across the same question in future...
The above does affect the single product page & also the admin side of WooCommerce (product list/product gallery/order screen/cart page). You may not have a 300x300 image to replace it with though.
You can of course edit the code above and change 300 to something else (insert it into functions.php).
I used Regenerate Thumbnails Advanced - /. Just ensure you are not adding any new sizes on the top right. And it seems "Force Regeneration is also important! Or it wont work. Once that is complete, you can go ahead and delete all the 100x100 images on the server (IF you dont use them anywhere already).
Thumbnail Regenerate
本文标签: wordpressWooCommerce Admin Panel Image SizesStack Overflow
版权声明:本文标题:wordpress - WooCommerce Admin Panel Image Sizes - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745238094a2649155.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论