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 tamara-m/0f51c4d50a5de0931ad794051e79f297 to your computer and use it in GitHub Desktop.
Save tamara-m/0f51c4d50a5de0931ad794051e79f297 to your computer and use it in GitHub Desktop.
<?php
/**
* Use this filter to set a different default quantity for child products
*/
function prefix_filter_default_child_independent_quantity( $quantity_field_value, $child_product_id, $item ) {
return 1;
}
add_filter( 'pewc_child_product_independent_quantity', 'prefix_filter_default_child_independent_quantity', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment