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 :
- 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)
- Add a PHP constant in wp-config.php (or mu-plugin) : define( 'SECUPRESS_HIDE_API_KEY', true );
- 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.