Skip to content

Instantly share code, notes, and snippets.

  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
<?php
add_filter( 'gform_field_value_default_quantity', 'endo_set_default_quantity' );
function endo_set_default_quantity() {
return 1; // change this number to whatever you want the default quantity to be
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment