Помощь Блок с гарантиями для клиентов

скинь пожалуйста посмотреть ссылочку как у тебя выглядит на сранице продукта
у меня в левой колонке , этот модуль и под другие цели можно приспособить - изображение - подпись, Для просмотра ссылки Войди или Зарегистрируйся вот делаю новый.

в файле blockreinsurance.php добавляешь нужный хук
PHP:
public function install()
    {
        return parent::install() &&
            $this->installDB() &&
            Configuration::updateValue('BLOCKREINSURANCE_NBBLOCKS', 5) &&
            $this->registerHook('displayLeftColumn') && $this->installFixtures() &&
            // Disable on mobiles and tablets
            $this->disableDevice(Context::DEVICE_TABLET | Context::DEVICE_MOBILE);
    }
PHP:
public function hookDisplayLeftColumn($params)
    {
        $this->context->controller->addCSS($this->_path.'style.css', 'all');
        if (!$this->isCached('blockreinsurance.tpl', $this->getCacheId()))
        {
            $infos = $this->getListContent($this->context->language->id);
            $this->context->smarty->assign(array('infos' => $infos, 'nbblocks' => count($infos)));
        }
        return $this->display(__FILE__, 'blockreinsurance.tpl', $this->getCacheId());
    }
В моём случае добавила в хук LeftColumn
 
Последнее редактирование:
Назад
Сверху