gform_user_registration_login_form_description

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 change_description(){
return 'This is my new description';
}

Placement

This code can be used in the functions.php file of the active theme, a custom functions plugin, a custom add-on, or with a code snippets plugin.

See also the PHP section in this article: Where Do I Put This Code?

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.