Copy Label (instead of Value)
By default, the value of a choice-based field/radio is copied. Use this snippet to copy the label instead of the value.
Instructions
- Install our free Custom Javascript for Gravity Forms plugin. Download the plugin here: https://gravitywiz.com/gravity-forms-code-chest/
- Copy and paste the snippet into the editor of the Custom Javascript for Gravity Forms plugin.
Code
Filename: gpcc-copy-label.js
/**
* Gravity Perks // Copy Cat // Copy Label (instead of Value)
* https://gravitywiz.com/documentation/gravity-forms-copy-cat/
*
* Instruction Video: https://www.loom.com/share/00f1287e4a23495aa9aa02ba95f882a5
*
* By default, the value of a choice-based field/radio is copied.
* Use this snippet to copy the label instead of the value.
*
* Instructions:
* 1. Install our free Custom Javascript for Gravity Forms plugin.
* Download the plugin here: https://gravitywiz.com/gravity-forms-code-chest/
* 2. Copy and paste the snippet into the editor of the Custom Javascript for Gravity Forms plugin.
*/
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();
} else if( $source.is( '.gfield_radio' ) ) {
value = $source.find( '.gfield-choice-input:checked + label' ).text();
} else if ( $source.is( '.gfield_checkbox') ) {
$inputs = $source.find( 'input:checked' );
var checkedLabels = [];
$inputs.each( function () {
var label = $(this).next('label').text();
checkedLabels.push( label );
});
value = checkedLabels.join(' ');
}
return value;
} );