Disable Update notification in Dashboard?

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
View Replies: View Best Answer
ideasponge replied on at Reply
ideasponge
Any clue on how to hide this?
synlag replied on at 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/...
stressdesign replied on at Reply
stressdesign
Does anyone have any additional information on this?
ideasponge replied on at 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 Reply
pixelfish
I solved this by finding:
concrete/controllers/dashboard/controller.php

and commenting out line 7:
//$lv = Update::getLatestAvailableVersionNumber();
Mnkras replied on at Reply
Mnkras
or in the /concrete/config/base.php you can copy the variable out and change the url
msglueck replied on at 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 Reply
cursal
Thank you that helps a lot msglueck!