How to hide the license informations (key and email)?

You may need to hide the license informations, like the api key and email address.

3 solutions :

  1. Just set your license informations, then only the email address should be visible/readable. The API key will be replaced by those dots •••••… (the visible email address is not enough to validate a license of course)
  2. Add a PHP constant in wp-config.php (or mu-plugin) : define( 'SECUPRESS_HIDE_API_KEY', true );
  3. Add 2 PHP constans, same place, define( 'SECUPRESS_API_KEY', 'your-api-key' ); define( 'SECUPRESS_API_EMAIL', 'your@email.hey' ); this will autohide the informations.