Advertisement
alex91ckua

Hide price for certain WC products

Sep 5th, 2020
364
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. add_filter( 'woocommerce_get_price_html', 'product_price_html', 10, 2 );
  2. add_filter( 'woocommerce_variable_sale_price_html', 'product_price_html', 10, 2 );
  3. add_filter( 'woocommerce_variable_price_html', 'product_price_html', 10, 2 );
  4.  
  5. function product_price_html($price, $product) {
  6.   if ( in_array($product->get_id(), [1, 5, 7])) { // if product ID's "1, 5 or 7"
  7.     $price = __('Price is hidden');
  8.   }
  9.  
  10.   return $price;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement