Копирую модуль blockbestsellers.
Устанавливаю. При установке добавляю новый хук.
Код:
public function install()
{
$this->_clearCache('*');
if (!parent::install()
|| !$this->registerHook('header')
|| !$this->registerHook('leftColumn')
|| !$this->registerHook('actionOrderStatusPostUpdate')
|| !$this->registerHook('addproduct')
|| !$this->registerHook('updateproduct')
|| !$this->registerHook('deleteproduct')
|| !$this->registerHook('displayHomeTab')
|| !$this->registerHook('displayHomeTabContent')
[B]|| !$this->registerHook('aftercategory')[/B]
|| !ProductSale::fillProductSales()
)
return false;
Configuration::updateValue('PS_BLOCK_BESTSELLERS_TO_DISPLAY', 10);
return true;
}
В админке он появляется https://yadi.sk/i/fWecXfCmv48T6
В шаблоне вывод делаю так
{hook h="aftercategory" mod="blockbestsellersinside"}
или так
{hook h="aftercategory"}
Но на страницах сайта он так и не появляется.
Что делаю не так?