View Categories

fluentform/store_submission_note

Description  #

This filter returns a response note when adding a response note.

apply_filters('fluentform/store_submission_note', $response_note);

Usage   #

add_filter('fluentform/store_submission_note', function($response_note) {
    return $response_note;
}, 10, 1);

Parameters #

  • $response_note (array) Note Data

Placement #

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

Source Code #

This filter is located in FluentForm\App\Services\Submission\SubmissionServices -> getNotes($submissionId, $attributes)