View Categories

fluentform/ipn_endpoint_{$paymentMethod}

Table of Contents

Description #

This action runs during the ipn endpoint verification.

/*
* Source Action
*/
do_action('fluentform/ipn_endpint_' . $paymentMethod);

Usage #

add_action('fluentform/ipn_endpint_stripe', function ()
{
   // Do your stuffs here
}, 10, 0);

This code should be placed in the functions.php file of your active theme.

Source Code #

This hook is located in /fluentformpro/src/Payments/PaymentHandler.php