Hi @grille01,
Thank you for making this support request. Our developers have introduced a filter which will allow you to set a custom Form submission success message. I just tested this out by placing the sample code in my theme functions.php
file.
Here is some sample code that would work for this. You should replace the text Your message was sent.
with your desired message.
/**
* Set a custom success message on successful form submission
*
* @return string Form submission success message
*/
function coblocks_form_sent_message() {
return __( 'Your message was sent.', 'textdomain' );
}
add_filter( 'coblocks_form_sent_notice', 'coblocks_form_sent_message' );
Best regards,
Anthony