Skip to content

Instantly share code, notes, and snippets.

@WebEndevSnippets
Created February 15, 2013 13:35
Show Gist options
  • Save WebEndevSnippets/4960405 to your computer and use it in GitHub Desktop.
Save WebEndevSnippets/4960405 to your computer and use it in GitHub Desktop.
Gravity Forms: Dynamic Population Of Field
/**
* Patient Name Dynamic Population
*
*/
add_filter('gform_field_value_patient_name', 'patient_name_population_function');
function patient_name_population_function($value){
$name = $_POST['input_20_10'];
return $name;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment