Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save plugin-republic/5c522858370ac34c9be9b627a96dbd40 to your computer and use it in GitHub Desktop.

Select an option

Save plugin-republic/5c522858370ac34c9be9b627a96dbd40 to your computer and use it in GitHub Desktop.
<?php
/**
* Remove quantity field from all single product pages
*/
function pr_is_sold_individually_all_products( $individually, $product ) {
return $individually;
}
add_filter( 'woocommerce_is_sold_individually', 'pr_is_sold_individually_all_products', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment