add_filter( 'woocommerce_get_price_html', 'ab_hide_price_if_out_stock_product', 9999, 2 );
function ab_hide_price_if_out_stock_product( $price, $product ) {
if ( is_admin() ) return $price;
if ( ! $product->is_in_stock() ) {
$price = apply_filters( 'woocommerce_empty_price_html', '', $product );
}
return $price;
}
Last Update on:March 5th, 2023 at 5:19 pm