mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
6 lines
220 B
Text
6 lines
220 B
Text
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;
|
|
}
|