Skip to content

Instantly share code, notes, and snippets.

@spivurno
Last active November 29, 2021 19:42
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save spivurno/96793af8d1523621a082d5579dd66cc7 to your computer and use it in GitHub Desktop.
Save spivurno/96793af8d1523621a082d5579dd66cc7 to your computer and use it in GitHub Desktop.
Gravity Perks // GP Copy Cat // Copy Label (instead of Value)
<!--
Gravity Perks // GP Copy Cat // Copy Label (instead of Value)
http://gravitywiz.com/documentation/gravity-forms-copy-cat/
Instructions:
1. Add an HTML field to your form.
2. Copy and paste the entire contents of this snippet into the "Content" field setting.
-->
<script>
gform.addFilter( 'gppc_copied_value', function( value, $elem, data ) {
$source = jQuery( '#input_' + data.sourceFormId + '_' + data.source );
if( $source.is( 'select' ) ) {
value = $source.find( 'option:selected' ).text();
}
return value;
} );
</script>
@MaxwellAdams
Copy link

hi

@spivurno
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment