Description
The “gform_user_registration_login_form_title” filter in the Gravity Forms User Registration Add-On allows the title of the login form to be modified.
Usage
add_filter( 'gform_user_registration_login_form_title', 'your_function_name', 10, 1 );
Parameters
- $login_form_title string
The title of the login form.
Examples
add_filter( 'gform_user_registration_login_form_title', 'change_title', 10, 1 ); function change_title( $login_form_title ){ return 'This is my new title'; }
Placement
This code should be placed in the functions.php file of your active theme.
Since
This filter was added in User Registration version 3.2.
Source Code
This filter is located in GF_User_Registration::login_form_object() in gravityformsuserregistration/class-gf-user-registration.php.