|
/ Documentation /Developer Documentation/Filter Hooks/ srfm_after_submit_confirmation_message

srfm_after_submit_confirmation_message

This filter allows developers to modify the form confirmation message after it has been processed with smart tags and submission data. It provides an opportunity to customize or append additional content to the confirmation message before it is displayed to the user.

Example:

add_filter( 'srfm_after_submit_confirmation_message', function( $confirmation_message ) {
// Append a custom thank-you note to the confirmation message.
return $confirmation_message . ' Thank you for submitting the form!';
});

Parameters:

  • $confirmation_message – String

Filter Source:

/**
* filter source
*/
apply_filters( ‘srfm_after_submit_confirmation_message’, $confirmation_message );

Filter Usage:

add_filter(‘srfm_after_submit_confirmation_message’, 'your_custom_function', 10, 1);

function your_custom_function( $confirmation_message )
{
   //Add code here
   return $confirmation_message;
}

Filter Example:

add_filter(‘srfm_after_submit_confirmation_message’, your_custom_function, 10, 1);

function your_custom_function( $confirmation_message )
{
        if ( ! $confirmation_message ) {
                return $confirmation_message;
        }
          //Add code here
        return $confirmation_message;
}
Was this doc helpful?
What went wrong?

We don't respond to the article feedback, we use it to improve our support content.

Need help? Contact Support
On this page
Scroll to Top