Пытаюсь прикрутить по аналогии все к модулю homefeatured но там совершенно разные строки и в итоге не выходит
1. Откройте файл
/themes/тема/modules/homefeatured/homefeatured.tpl и добавьте:
Код:
{assign var='request' value=$link->getPaginationLink(false, false, false, true)}
{include file="$tpl_dir./product-sort.tpl"}
2. Откройте файл
/modules/homefeatured/homefeatured.php и в методе
hookDisplayHome перепишите / удалите условия: isCached и getCacheId и
$this->_cacheProducts();
до:
Код:
$this->smarty->assign(array(
добавьте:
Код:
$controller = new FrontController();
$controller->productSort();
$category = new Category(Context::getContext()->shop->getCategory(), (int)Context::getContext()->language->id);
$nb = (int)Configuration::get('HOME_FEATURED_NBR');
Код:
'products' => HomeFeatured::$cache_products,
замените на:
Код:
'products' => $category->getProducts((int)Context::getContext()->language->id, 1, ($nb ? $nb : 8), $controller->orderBy, $controller->orderWay),