Ответить Новая тема Новый опрос 
 Срочно нужна помощь
pyton666
Новичок
Сообщений: 1
Регистрация: 17-03-2015


17-03-2015 12:37
Доброго времени суток. Возник такой вопрос, как сделать вывод товаров как на этом сайте http://shashlikoff.com/delivery/ Зарание благодарю за помощь )))
 
Вне форума
ПМ 
Щелкните, и это сообщение будет добавлено в ваш ответ как цитата Цитировать этот ответ
Алекс


Администратор
Сообщений: 4516
Откуда: Красноярск
Регистрация: 29-05-2009


17-03-2015 15:59
Открыть файл /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}
 
Вне форума
ПМ Отправить эл.сообщение 
Щелкните, и это сообщение будет добавлено в ваш ответ как цитата Цитировать этот ответ
Ответить Новая тема Новый опрос