Открыть файл
/controllers/front/CategoryController.php
найти и удалить:
Код:
$this->assignSubcategories();
$this->assignProductList();
на этой строчке добавить код:
Код:
if ($this->cat_products = $this->category->getSubCategories($this->context->language->id))
{
foreach($this->cat_products as &$item)
{
$cat = new Category($item['id_category']);
$item['products'] = $cat->getProducts($this->context->language->id, 1, 1, $this->orderBy, $this->orderWay);
}
}
Открыть файл
/themes/ваша-тема/category.tpl
удалить:
Код:
{if $products}
<div class="content_sortPagiBar clearfix">
<div class="sortPagiBar clearfix">
{include file="./product-sort.tpl"}
{include file="./nbr-product-page.tpl"}
</div>
<div class="top-pagination-content clearfix">
{include file="./product-compare.tpl"}
{include file="$tpl_dir./pagination.tpl"}
</div>
</div>
{include file="./product-list.tpl" products=$products}
<div class="content_sortPagiBar">
<div class="bottom-pagination-content clearfix">
{include file="./product-compare.tpl" paginationId='bottom'}
{include file="./pagination.tpl" paginationId='bottom'}
</div>
</div>
{/if}
на этой строчке добавить код:
Код:
{if $products}
{foreach from=$products item=sub_product name=sub_products}
<div class="cat_desc">
<span class="category-name">
{strip}
{$sub_product.name|escape:'html':'UTF-8'}
{/strip}
</span>
</div>
{if isset($sub_product.products) && $sub_product.products}
{include file="./product-list.tpl" products=$sub_product.products}
{/if}
{/foreach}
{/if}