Source file: modules/contact-form/grunion-contact-form.php
View in GitHubParameters
- $var
-
(string) Required field text. Default is ”(required)”.
Changelog
Since: Jetpack 3.8.0
Notes
You can use that filter to change the “Required” text in the Contact Form. Here is an example:
function jeherve_custom_required() { return 'this is important'; } add_filter( 'jetpack_required_field_text', 'jeherve_custom_required' );