Hide sale badge is t he product is out of stock in WooCommerce.
Snippet Type
Execute on Child Sites
Snippet
add_filter( 'woocommerce_sale_flash', 'wc_no_sale_badge_if_out_of_stock', 9999, 3 );
function wc_no_sale_badge_if_out_of_stock( $html, $post, $product ) {
if ( ! $product->is_in_stock() ) return;
return $html;
}