Hide sale badge is t he product is out of stock in WooCommerce

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;
}

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