Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save woogists/d520d02e4228ded9dd4c7d3b5f88607b to your computer and use it in GitHub Desktop.
Save woogists/d520d02e4228ded9dd4c7d3b5f88607b to your computer and use it in GitHub Desktop.
[WooCommerce Ninja Forms Product Add-ons] Hide All Sub Prices
/*
* Snippet to hide all sub prices
* Code goes in the functions.php file in your theme.
*/
add_filter( 'wc_nf_addons_cart_option', 'wc_ninja_forms_price' );
function wc_ninja_forms_price( $display ) {
return '';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment