Answers for "wp wc php remove product from cart if amount is 0"

PHP
0

wp wc php remove product from cart if amount is 0

//Hide Price when Price is Zero
add_filter( 'woocommerce_get_price_html','maybe_hide_price',10,2);
function maybe_hide_price($price_html, $product){
     if($product->get_price()>0){
          return $price_html;
     }
     return '';
 } 
// End of above code
Posted by: Guest on October-14-2021

Code answers related to "wp wc php remove product from cart if amount is 0"

Browse Popular Code Answers by Language