DEV Community

Cover image for Disable WC automatic thumbnail generation.
Broadway Wine N Liquor
Broadway Wine N Liquor

Posted on

Disable WC automatic thumbnail generation.

WooCommerce is slick for developers. Simple hooks fix problems fast.
We use WC on our site with +10,000 products and close to 30,000 images. Since WC4.4, everytime a change is made, the system wants to regenerate all 200,000 images (inc all generated thumbnails)... Sigh..

The quick fix is:

add_filter( 'woocommerce_background_image_regeneration', '__return_false' );

More info Broadway Wine N Liquor

Top comments (0)