Skip to main content

Remove gravity forms unlicensed message

Gravity forms is a great forms plugin for WordPress. I purchased a licence and it lapsed, but I still use it on my website. The problem is, because the licence is lapsed, I am seeing an ugly, annoying message saying that my copy is unlicensed. Just to clarify, I did buy a licence, and I am allowed to use the copy, I just don’t want to renew it for a new version.

To remove the nag, it’s a bit tricky, Gravity Forms have gone above and beyond to make it difficult for people to do to protect their bottom line and just annoy someone to eventually re-licence.

However, with that being said, just add this to your functions.php file.

// Remove gravity forms nag
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' );

11 thoughts to “Remove gravity forms unlicensed message”

  1. HI thank you for your post. One quick question where is functions.php in gravity forms. I’ve looked everywhere and I can’t find it.

    1. Hi Pedro, functions.php is not in your gravity forms folder. It is in your theme’s folder. Look in your active theme folder and find functions.php, it is there 100%.

Leave a Reply