DescriptionUsageParametersExamplesPlacementSinceSource Code
Description
The 「gform_user_registration_login_form_description」 filter in the Gravity Forms User Registration Add-On allows the description of the login form to be modified.
Usage
add_filter( 'gform_user_registration_login_form_description', 'your_function_name' );
Parameters
There are no parameters.
Examples
add_filter( 'gform_user_registration_login_form_description', 'change_description' );
function gform_user_registration_login_form_description(){
return 'This is my new description';
}
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.