Description #
This action runs after rendering the payment receipt. You can use this to insert additional content.
/*
* Source Action
*/
do_action('fluentform/payment_receipt_after_content', $entry);
Usage #
add_action('fluentform/payment_receipt_after_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