Skip to content

Instantly share code, notes, and snippets.

@polevaultweb
Created September 6, 2016 10:50
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save polevaultweb/835f5b2886a9b6139a47e7d52315babf to your computer and use it in GitHub Desktop.
Save polevaultweb/835f5b2886a9b6139a47e7d52315babf to your computer and use it in GitHub Desktop.
<?php
add_filter( 'ninja_forms_i18n_front_end', 'my_custom_ninja_forms_i18n_front_end' );
function my_custom_ninja_forms_i18n_front_end( $strings ) {
$strings['validateRequiredField'] = 'this is my required field text';
return $strings;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment