checkout.post.php создай в своем модули если нет и добавь туда
<?php
use Tygh\Registry;
if (!defined('BOOTSTRAP')) { die('Access denied'); }
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
if ($mode == 'add') {
if(isset($_SESSION['notifications'])){
foreach($_SESSION['notifications'] as $key => $value){
if ($value['type'] == 'I'){
unset($_SESSION['notifications'][$key]);
}
}
}
}
}