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.
Any clue on how to hide this?
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/...
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/...
Does anyone have any additional information on this?
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.
I do think that this fix needs to be reapplied after each update to a new version though.
I solved this by finding:
concrete/controllers/dashboard/controller.php
and commenting out line 7:
//$lv = Update::getLatestAvailableVersionNumber();
concrete/controllers/dashboard/controller.php
and commenting out line 7:
//$lv = Update::getLatestAvailableVersionNumber();
or in the /concrete/config/base.php you can copy the variable out and change the url
for 5.4.1.1: concrete/elements/dashboard/notification_update.php
replace
with
replace
if (version_compare($latest_version, APP_VERSION, '>'))
with
if (false)
Thank you that helps a lot msglueck!