Table of Contents
Description #
This action runs if the paypal ipn verification is failed . You can hook into this and get the error data.
/*
* Source Action
*/
do_action('fluentform_paypal_ipn_verification_failed', $remote_post_vars, $encoded_data_array);
Usage #
add_action('fluentform_payment_refund_updated_stripe', function ($remote_post_vars, $encoded_data_array)
{
// Do your stuffs here
}, 10, 2);
This code should be placed in the functions.php file of your active theme.
Paramertes #
- $remote_post_vars (array) Remote Post Data
- $encoded_data_array (array) Encoded Data
Source Code #
This hook is located in /fluentformpro/src/Payments/PaymentMethods/PayPal/API/IPN.php