J'ai aussi dû retirer
if(is_countable($category)) {...}
dans CMSCategory et remplacé
if (count($category)) {...}
par
$this->_menu .= '<li><a href="'.Tools::HtmlEntitiesUTF8($category->getLink()).'" title="'.$category->name.'">'.$category->name.'</a>'; $this->getCMSMenuItems($category->id); $this->_menu .= '</li>'.PHP_EOL;
pour avoir mon lien d'afficher dans le menu top, sinon évidemment il ne s'affiche plus.