我已经通过其他网站的宏复制了产品,但它也错误地复制了缩略图。现在我的所有产品都有缩略图也作为产品图库图像附加。对我来说,图像大小相同112 x 112是很忙碌的。
是否有从我的产品库图片中删除112 x 112的所有图像?
答案 0 :(得分:0)
根据此article,您可以删除woocommerce中的任何图片。
示例代码 :
// Remove product thumbnail from the cart page
add_filter( 'woocommerce_cart_item_thumbnail', '__return_empty_string' );
或
// Remove product images from the shop loop
remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );