Hey Milco,
- To change the text “*” indicates required fields to a custom text, use the following code in your child theme’s
functions.phpfile or a Code Snippets plugin. Make sure to replace the text within the function below.
add_filter( 'gform_required_legend', function( $legend, $form ) {
return 'your custom legend here';
}, 10, 2 );
- To change the required fields indicator, navigate to
Forms Settings → Required Field Indicatorand choose the Custom option to insert your own text, as shown in the screenshot below.
Note: These are the recommended ways to modify these settings without encountering any issues in the future.
Final preview:
Useful Resources:


