Disable Update notification in Dashboard?

Permalink 1 user found helpful
Is there a way to disable the update notification of a new c5 in the Dashboard? I don't want to be inundated with support tickets from my clients because they see a notice when they login.

ideasponge
 
ideasponge replied on at Permalink Reply
ideasponge
Any clue on how to hide this?
synlag replied on at Permalink Reply
synlag
hi,

in your root folder

concrete/single_pages/dashboard

are all dashboard pages located.
copy the page you want to edit to your singel_pages with the same directory structure.

single_pages/dashboard/...
76West replied on at Permalink Reply
76West
Does anyone have any additional information on this?
ideasponge replied on at Permalink Reply
ideasponge
I followed synlag's directions and it worked perfectly.

I do think that this fix needs to be reapplied after each update to a new version though.
pixelfish replied on at Permalink Reply
pixelfish
I solved this by finding:
concrete/controllers/dashboard/controller.php

and commenting out line 7:
//$lv = Update::getLatestAvailableVersionNumber();
Mnkras replied on at Permalink Reply
Mnkras
or in the /concrete/config/base.php you can copy the variable out and change the url
msglueck replied on at Permalink Best Answer Reply
msglueck
for 5.4.1.1: concrete/elements/dashboard/notification_update.php

replace
if (version_compare($latest_version, APP_VERSION, '>'))

with
if (false)
cursal replied on at Permalink Reply
cursal
Thank you that helps a lot msglueck!