Change the Validation Message
Instructions
See “Where do I put snippets?” in our documentation for installation instructions.
Code
Filename: gpb-change-the-validation-message.php
Filename: gpb-change-the-validation-message.php
<?php
/**
* Gravity Perks // Blocklist // Change the Validation Message
* https://gravitywiz.com/documentation/gravity-forms-blocklist/
*/
add_filter( 'gpb_validation_message', function( $validation_message ) {
// Specify the message you would like to use.
return 'YOUR MESSAGE';
});