Watusee
Watusee

Reputation: 31

How to remove update alerts from wagtail dashboard page

I would like to disable the wagtail update alert from the the dashboard. I'm concerned it alarms my clients. I do appreciate the reminder, but there is no way to dismiss it. I guessing the only course of action at this point is to go into the wagtail admin template and simply comment out the applicable code?

Upvotes: 2

Views: 1296

Answers (1)

m1kola
m1kola

Reputation: 696

There is the WAGTAIL_ENABLE_UPDATE_CHECK setting in Wagtail.

To disable update alerts you need to add the following line to your settings file:

WAGTAIL_ENABLE_UPDATE_CHECK = False

Upvotes: 7

Related Questions