Removes this message:
You have not saved a license number in Site Configuration, therefore you will not be able to download plugins. Once you have a valid license key saved then you'll be able to install any plugins that are listed as Core plugins.
Open "j16000showplugins.class.php"
Located here: /jomres/core-plugins/plugin_manager
Go to Line: 222
Remove from this line (222):
if ($jrConfig[ 'licensekey' ] == '') {
To this line (237):
}
All of these lines should be deleted:
if ($jrConfig[ 'licensekey' ] == '') {
$output['LICENSE_MESSAGE'] = jr_gettext('NO_LICENSE_MESSAGE', 'NO_LICENSE_MESSAGE', false);
$output['LICENSE_MESSAGE_CLASS'] = 'danger';
} elseif (!$this->key_valid) {
if ($key_validation->license_name == "Developer Subscription" || $key_validation->license_name == "Basic Subscription" ) {
$output['LICENSE_MESSAGE'] = jr_gettext('PLUGIN_MANAGER_REMOVE_PLUGINS', 'PLUGIN_MANAGER_REMOVE_PLUGINS', false);
$output['LICENSE_MESSAGE_CLASS'] = 'danger';
} else {
$output['LICENSE_MESSAGE'] = jr_gettext('INVALID_LICENSE_MESSAGE', 'INVALID_LICENSE_MESSAGE', false);
$output['LICENSE_MESSAGE_CLASS'] = 'danger';
}
} else {
$output['LICENSE_MESSAGE'] = jr_gettext('VALID_LICENSE_MESSAGE', 'VALID_LICENSE_MESSAGE', false);
$output['LICENSE_MESSAGE_CLASS'] = 'success';
}
Created : 2021-10-23 09:59:52, Last Modified : 2021-10-23 10:10:47