gform_payment_details

Description

Triggered after the payment details are displayed within a Gravity Forms entry.

Usage

add_action( 'gform_payment_details', 'my_function', 10, 2 );

Parameters

  • $form_id integer

    The current form ID.

  • $entry array

    The current entry.

Examples

function my_function() {
//Do something here
}
add_action( 'gform_payment_details', 'my_function', 10, 2 );

Source Code

This action hook is located in entry_detail.php.