Description #
This action runs before rendering the payment receipt.
/*
* Source Action
*/
do_action('fluentform/payment_receipt_before_content', $entry);
Usage #
add_action('fluentform/payment_receipt_before_content', function ($entry)
{
// Do your stuffs here
}, 10, 1);
This code should be placed in the functions.php file of your active theme.
Parameters #
- $entry (object) Submission Object
Source Code #
This hook is located in /fluentformpro/src/Payments/Classes/PaymentReceipt.php