Skip to content

Instantly share code, notes, and snippets.

@stevenroh
Last active September 11, 2019 15:04
Show Gist options
  • Save stevenroh/2fc6157ec97d68354641616ea12bbd0a to your computer and use it in GitHub Desktop.
Save stevenroh/2fc6157ec97d68354641616ea12bbd0a to your computer and use it in GitHub Desktop.
Hide price for product that costs zero
<?php
// Hide price for product that costs zero
function rohs_hide_zero_price($price_html, $product){
if($product->get_price()>0){
return $price_html;
}
return '';
}
add_filter( 'woocommerce_get_price_html','rohs_hide_zero_price',10,2);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment