OpenCart Ajouter une balise de méta description personnalisée à l'aide du fichier de contrôleur

// try looking for a line in your controller file that looks like this:
$this->document->setDescription($this->language->get('description'));

// replace the it with the below
$this->document->setDescription("My custom description text!");
CoderHomie