CFGP_DISABLE_NOTIFICATION
– Disable all Geo Controller email notifications.
This constant instructs the plugin not to send any automated notifications via email.
Geo Controller automatically notifies all WordPress administrators about events like license expiration,
lookup limit reached, and other important system messages.
These emails are generated and sent by the plugin’s internal automation system directly from your website.
Since these messages are considered critical, disabling them is not available through the Settings page.
However, you can suppress all email notifications by defining this constant.
Source
Defined in:
/cf-geoplugin/constants.php
if (!defined('CFGP_DISABLE_NOTIFICATION')) { define('CFGP_DISABLE_NOTIFICATION', false); }
How to disable notifications
Add this line to your
wp-config.php file before plugins are loaded:
// Disable all Geo Controller email notifications define('CFGP_DISABLE_NOTIFICATION', true);
Disable individual notifications
If you prefer to disable specific types of notifications instead of all, you can use these constants:
// Disable "License will expire soon" notification define('CFGP_DISABLE_NOTIFICATION_EXPIRE_SOON', true); // Disable "Lookup expired" notification define('CFGP_DISABLE_NOTIFICATION_LOOKUP_EXPIRED', true); // Disable "Lookup expires soon" notification define('CFGP_DISABLE_NOTIFICATION_LOOKUP_EXPIRE_SOON', true);
Important
Note: If you disable these notifications, you risk missing important alerts such as license expiration or lookup depletion, which may lead to disruptions in your geolocation services.