Description #
This filter checks if the integration is asynchronous or not. If you working on an integration you can return false to run the integration instantly.
apply_filters('fluentform/notifying_async_' . $integrationKey, true, $form->id)
Usage #
add_filter('fluentform/notifying_async_mailchimp', '__return_false');
Parameters #
- $status (boolean) Async Notification Status
- $formID (int) Form ID
Placement #
This code should be placed in the functions.php file of your active theme.
Source Code #
This filter is located in FluentForm\App\Hooks\Handlers\GlobalNotificationHandler -> globalNotify()