Para borrar las notificaciones de actualizaciones en Prestashop al entrar al panel de administración debemos ir al siguiente fichero:
directorio_administracion/tabs/AdminHome.php
Buscar estas líneas:
[sourcecode language=’php’]
if (@ini_get(‘allow_url_fopen’))
{
$upgrade = new Upgrader();
if($update = $upgrade->checkPSVersion())
echo ‘
‘.$this->l(‘New PrestaShop version available’).’ : ‘.$this->l(‘Download’).’ ’.$update[‘name’].’ !
‘;
}
else
{
echo ‘
‘.$this->l(‘Update notification unavailable’).’
‘;
echo ‘
‘;
echo ‘
‘.$this->l(‘To receive PrestaShop update warnings, you need to activate the allow_url_fopen command in your php.ini config file.’).’ [‘.$this->l(‘more info’).’]
‘;
echo ‘
‘.$this->l(‘If you don\’t know how to do that, please contact your host administrator !’).’
‘;
}
[/sourcecode]


