Skip to content

Instantly share code, notes, and snippets.

@generatepress
Created November 29, 2016 19:50
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save generatepress/70f3848731ae74377189c124ae26c0d3 to your computer and use it in GitHub Desktop.
Save generatepress/70f3848731ae74377189c124ae26c0d3 to your computer and use it in GitHub Desktop.
Remove license key meta box from GeneratePress admin page
add_action( 'admin_init','tu_remove_gp_premium_license_key_field' );
function tu_remove_gp_premium_license_key_field()
{
remove_action( 'generate_admin_right_panel', 'generate_activation_area' );
}
@hsnyc
Copy link

hsnyc commented Jan 2, 2017

Thanks Tom! Very helpful 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment