Jump to content

Edit History

Janett

Janett

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');
    }

 

Janett

Janett

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 ($this->context->controller->php_self !== 'category') {
            return '';
        }

        $this->context->smarty->assign([
            'module' => $this->module->name,
        ]);

        return $this->display(__FILE__, '/views/templates/hook/displayFooter-category.tpl');
    }

 

×
×
  • Create New...