Using Gravity Forms ‘gform_user_registration_login_form_description’ PHP filter

The gform_user_registration_login_form_description filter in the Gravity Forms User Registration Add-On allows you to modify the description of the login form.

Usage

add_filter('gform_user_registration_login_form_description', 'your_function_name');

Parameters

There are no parameters.

More information

See Gravity Forms Docs: gform_user_registration_login_form_description

This filter was added in User Registration version 3.2. The filter is located in GF_User_Registration::login_form_object() in gravityformsuserregistration/class-gf-user-registration.php.

Examples

Change the login form description

This example changes the description of the login form.

add_filter('gform_user_registration_login_form_description', 'change_description');

function change_description() {
    return 'This is my new description';
}