Is it possible to turn off the Umbraco upgrade message in the Umbraco backoffice. Don't necessarily want my users to see this.
Is it possible to turn off the Umbraco upgrade message in the Umbraco backoffice. Don't necessarily want my users to see this.
for umbraco 8 add add this key in appsettings section in the web.config
<add key="Umbraco.Core.VersionCheckPeriod" value="0" />
Add VersionCheckPeriod to the appsettings.json.
{
"Umbraco": {
"CMS": {
"Global": {
"VersionCheckPeriod": 0
}
}
}
}
When this value is set above 0, the backoffice will check for a new version of Umbraco every 'x' number of days where 'x' is the value defined for this setting. Set this value to 0 to never check for a new version.
References:
The code for the API controller is also here: https://github.com/umbraco/Umbraco-CMS/blob/e626fca2432582f052cb13654eedd9e60ef8723f/src/Umbraco.Web.BackOffice/Controllers/UpdateCheckController.cs#L47