gpnf_row_id_label
Description
Filter the Row ID Summary Field label.
Usage
Filter the Row ID Summary Field label for all nested forms.
add_filter( 'gpnf_row_id_label', function( $row_id_label, $nested_form ) {
return 'Custom Row ID Label';
}, 10, 2 );
Filter the Row ID Summary Field label for a specific nested form.
add_filter( 'gpnf_row_id_label_NESTEDFORMID', function( $row_id_label, $nested_form ) {
return 'Custom Row ID Label';
}, 10, 2 );
Parameters
Since
This filter is available since Gravity Forms Nested Forms 1.1.3.