gform_payment_details

gform_payment_details

DescriptionUsageParametersExamplesSource Code

Description
Triggered after the payment details are displayed within a Gravity Forms entry.
Usage
1add_action( ‘gform_payment_details’, ‘my_function’, 10, 2 );

Parameters

$form_id integer
The current form ID.

$entry array
The current entry.

Examples
1234function 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.

上次修改 2021.12.28