filter

jetpack_required_field_text

Filter the Contact Form required field text

Parameters

$var
string

Required field text. Default is "(required)".

Changelog

How to use this hook

See “How to use actions and filters to customize Jetpack”.

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' );