Problem:
The user would like to customize the success message in a form before the page is redirected.
Solution:
This will require custom code snippet to customize the message that would be displayed before the redirect. Something like:
add_filter('gettext', function($translated_text, $untranslated_text, $domain){
if($untranslated_text == 'Please Wait. You are being redirected...' && $domain == 'wp-cred'){
$translated_text = 'The new message to display before the redirect';
}
return $translated_text;
}, 10, 3);
Note that the message will be wrapped in a
tag, this means that you can't use any HTML tags, only the ones that can be wrapped in a
tag.