- This topic has 40 replies, 27 voices, and was last updated 1 year ago by .
- You must be logged in to reply to this topic.
Welcome to GPLDL - we are still beta - please report any bugs via the contact form.
Hi,
So I’d like here to summarize working method to remove all the gravityforms nag.
1. Install the plugin, but don’t activate it.. yet.
2. Add this code to your ‘functions.php’ (better if using child-theme)
function remove_gravity_forms_nag() {
update_option( 'rg_gforms_message', '' );
remove_action( 'after_plugin_row_gravityforms/gravityforms.php', array( 'GFForms', 'plugin_row' ) );
}
add_action( 'admin_init', 'remove_gravity_forms_nag' );
3. Edit file ‘gravityforms.php’ (root of the plugin file) on line 1763 as per-version 2.3.5, and change the code below:
echo '</tr><tr class="plugin-update-tr"><td colspan="3" class="plugin-update">' . $new_version . sprintf( esc_html__( '%sRegister%s your copy of Gravity Forms to receive access to automatic upgrades and support. Need a license key? %sPurchase one now%s.', 'gravityforms' ), '', '', '', '' ) . '</td>';
to this (basicly just delete everything between quotes) :
echo ' ';
4. Activate the plugin
5. Just click “Next” on the license activation page (Don’t Input Any License Key) and check “I understand the risks” and continue to click “Next” until you set “currency”.
6. Done!
Hope it helps.. ‘cos it works for me.. huehuehue..
Gravity Forms not allowing me to create new forms =(
Can’t create anything because of the “Insert Key” page!
Please help me!
Thank you Krishna Chaitanya. Your method worked perfectly!
Thank you guys for sharing these instructions in the forums. It should help a lot of fellow GPLDLers to get Gravity Forms to work! Highly appreciated!
Going to revive this since I can’t seem to get past the nag screen. I tried the above. Anyone know if this is working on 2.7.1 or even 2.6.x? Thanks in advance!
With the new pop-up when your in the dashboard its very simple. Ignore them asking for a license key and click on the arrow left-under your screen. Fill a random email address in and you are trough :). now you can continue setup.
dont see any ability to activate or a key
This doesnt work
Thanks @Dylano
It worked great! :-)
Cheers!
Hopefully, this helps those who are still trying to get this to work. I found this file:
/wp-content/plugins/gravityforms/includes/setup-wizard/endpoints/class-gf-setup-wizard-endpoint-validate-license.php
and changed this:
line 49: $is_valid = $info->can_be_used();
to
line 49: $is_valid = true;
Then put anything in the license key area and it will be valid.