Description
This filter allows the title of the forms statistics section displayed on the Dashboard to be changed.
Usage
add_filter( 'gform_dashboard_title', 'set_dashboard_title' );
Examples
add_filter( 'gform_dashboard_title', 'set_dashboard_title' );
function set_dashboard_title() {
//change the title of the Forms Dashboard
return "May The Forms Be With You";
}
Placement
This code should be placed in the functions.php file of your active theme.
Source Code
This filter is located in GFForms::dashboard_setup() in gravityforms.php