Remove admin notice on product thumbnails in WooCommerce

Remove admin notice on product thumbnails in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_action( 'current_screen', function() {
    remove_filter( 'admin_post_thumbnail_html', 'wc_product_post_thumbnail_html' );
});

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.