Symptoms
As of Gravity Forms version 2.5, you can now see details about your license on the Gravity Forms Settings page.
This has proven to be a pain for some developers and agencies that use an Elite license for all of their clients. They don’t want their clients to be able to see these details 🤷🏼♂️.
How To Fix It
Currently, there is no way to restrict the data that is being shown or turn it off with a white-label setting.
That said there are two ways you can completely remove the details section.
- You can hide it with a little CSS.
fieldset#gform-settings-section-section_license_key_details {
display: none;
}
Add the CSS snippet to the theme style sheet or use a functionality plugin.
- Remove it with the gform_settings_display_license_details filter.
Note: this filter was added in Gravity Forms version 2.5.16.4, so if you are not running that version or newer, it will not work.
add_filter( 'gform_settings_display_license_details', '__return_false' );
Place this code snippet in your themes functions.php file or use a functionality plugin.
You can learn more about this filter on the Gravity Forms doc site.
Need More Help?
If you still need help, feel free to use the comments or chat options below.
If you have an active Gravity Forms license, you can also open a support ticket here.