Tu peux utiliser le hook displayFooter et pour éviter que ton slider s’affiche sur toutes les pages de ta boutique, tu peux mettre une condition
/** * @param array $params * * @return string */ public function hookDisplayFooter(array $params) { if ('category' !== $this->context->controller->php_self) { return ''; } $this->context->smarty->assign([ 'module' => $this->module->name, ]); return $this->display(__FILE__, '/views/templates/hook/displayFooter-category.tpl'); }