gpnf_calc_replacement_value

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

Description

Filter the replacement values for Nested Forms calculation merge tag modifiers such as :sum.

When using this filter, it’s also recommended to utilize the JavaScript version of this filter.

Usage

Filter the replacement values for all Nested Forms calculation merge tag modifiers.

add_filter( 'gpnf_calc_replacement_value', 'my_custom_function' );

Filter the replacement values for Nested Forms calculation merge tag modifiers in a specific parent form.

add_filter( 'gpnf_calc_replacement_value_FORMID', 'my_custom_function' );

Filter the replacement values for a specific Nested Form’s calculation merge tag modifiers.

add_filter( 'gpnf_calc_replacement_value_FORMID_FIELDID', 'my_custom_function' );

Parameters

  • replace float

    Replacement value to use for the merge tag in the calculation.

  • match array

    Information about the matched merge tag.

  • entries array

    Child entries to be used for calculations

  • field \GF_Field

    Current Nested Form field.

  • form array

    Current child form.

  • formula_field \GF_Field

    The formula field with the merge tag in it.

Since

This filter is available since Gravity Forms Nested Forms 1.1.5.