License
The Cwicly License gives you the possibility to enable automatic updates as well as access to the design library.
You must have a current subscription to activate Cwicly.
If you are on a local installation, you might have to deactivate the SSL Verify property in the advanced panel.
The Cwicly plugin and theme are automatically activated since version 1.2.2.
When downloading or updating Cwicly, the license keys linked to your account are directly shipped with the Cwicly plugin in the license-data.php file. No additional steps are required.
Make an API call to the Cwicly servers to refresh your license data. Useful if you have changed servers, license keys or emails.
If for whatever reason you are receiving an error or want to specify your license keys manually, you can do so by adding the following constants to your wp-config.php.
1
/**
2
* Define Cwicly license constants manually to override the ones provided by default.
3
* Make sure the email corresponds to the license key purchase email.
4
*/
5
6
// The Cwicly plugin license key.
7
if (!defined('CC_LICENSE_KEY')) {
8
define('CC_LICENSE_KEY', 'replace_with_plugin_license');
9
}
10
11
// The Cwicly theme license key.
12
if (!defined('CC_LICENSE_THEME_KEY')) {
13
define('CC_LICENSE_THEME_KEY', 'replace_with_theme_license');
14
}
15
16
// The email linked to the license key.
17
if (!defined('CC_LICENSE_EMAIL')) {
18
define('CC_LICENSE_EMAIL', 'replace_with_email');
19
}
20
Last modified 8mo ago