Description #
This filter returns the message for the feed data.
apply_filters('fluentform/shortcode_feed_text', $feedText, $form);
Usage #
add_filter('fluentform/shortcode_feed_text', function($feedText, $form) {
return $feedText;
}, 10, 2);
Parameters #
- $feedText (string) Feed Text
- $form (object) Form Object
Placement #
This code should be placed in the functions.php file of your active theme.
Source Code #
This filter is located in FluentForm\App\Modules\Component\Component -> renderForm($atts)