Skip to content

Instantly share code, notes, and snippets.

@JulioPotier
Last active December 7, 2017 11:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JulioPotier/bbaaed82df99ea90e2224cde09e40963 to your computer and use it in GitHub Desktop.
Save JulioPotier/bbaaed82df99ea90e2224cde09e40963 to your computer and use it in GitHub Desktop.
SecuPress Pro Hide Licence Keys
<?php
/*
Plugin Name: Hide Licence Keys
*/
add_filter( 'secupress.global_settings.modules', 'secupress_hide_licence_keys' );
function secupress_hide_licence_keys( $modules ) {
unset( $modules[0] );
return $modules;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment