I had this problem right now and none of those steps works, so I found a better method and it worked.
AdminCP > Customization > Themes > Your Theme > Edit HTML & CSS > CSS (2nd tab) > custom.css
Add the following code:
.cNotificationList {
display: none;
}
And to disable the message upgrade from the panel (AdminCP) use the following code: (in the custom.css as well)
.core.admin.core.notificationList {
display: none;
}
Version: 4.4.2
Enjoy.