Skip to content

Instantly share code, notes, and snippets.

@jorpdesigns
Created July 14, 2021 19:45
Show Gist options
  • Select an option

  • Save jorpdesigns/88d6ad51f6ab7e81e8ee187bf8a53c27 to your computer and use it in GitHub Desktop.

Select an option

Save jorpdesigns/88d6ad51f6ab7e81e8ee187bf8a53c27 to your computer and use it in GitHub Desktop.
Snippet to add custom value to Gravity Form field
<?php
add_filter( 'gform_save_field_value_4_10', 'custom_field_value', 10, 5 ); // form id = 4, field id = 10
function custom_field_value() {
return 'New Value';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment