View Categories

fluentform/payment_frameless_{$paymentMethod}

Description #

This action runs before rendering the payment redirect handler page.

/*
* Source Action
*/
do_action('fluent_payment_frameless_' . $paymentMethod, $data);

Usage #

add_action('fluent_payment_frameless_'.$paymentMethod, function ($data)
{
   // Do your stuffs here
}, 10, 1);

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

Parameters #

  • $data (array) Payment Data

Source Code #

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