gpnf_row_id_label

  1. Description
  2. Usage
  3. Parameters
  4. Since

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

  • row_id_label string

    Row ID label.

  • nested_form array

    The current nested form.

Since

This filter is available since Gravity Forms Nested Forms 1.1.3.