Krijg je bij het opstarten van je administrator in Magento ook steeds een popup met de boodschap:

Reminder: Change Magento`s default phone numbers and callouts before site launch.

De oplossing is simpel:
1. Kopieer het bestand app/code/core/Mage/AdminNotification/Model/Resource/Inbox.php

naar

app/code/local/Mage/AdminNotification/Model/Resource
2. Zoek op regel 102 naar:

$select = $adapter->select()
->from($this->getMainTable())
->where(‘url=?’, $item[‘url’]);

en verander dit in:

$select = $adapter->select()
->from($this->getMainTable())
->where(‘url=? OR url IS NULL’, $item[‘url’])
->where(‘title=?’, $item[‘title’]);

3. Verwijder alle notificaties

of je kan deze module gebruiken; Deminder

Klaar.