Home › Forums › WoodMart support forum › Remove price from out of stock products › Reply To: Remove price from out of stock products
November 27, 2023 at 5:09 pm
#515989
Aizaz Imtiaz Awan
Keymaster
Hello,
01. Try to add the following php code in function.php of the child theme.
add_filter( 'woocommerce_get_price_html', 'pk_hide_price_if_out_stock_frontend', 9999, 2 );
function pk_hide_price_if_out_stock_frontend( $price, $product ) {
if ( is_admin() ) return $price; // BAIL IF BACKEND
if ( ! $product->is_in_stock() ) {
$price = apply_filters( 'woocommerce_empty_price_html', '', $product );
}
return $price;
}
02 Can you please tell me the exact path or send the complete url
Best Regards.