Dimon789 Posted March 23, 2014 Report Share Posted March 23, 2014 Подскажите как вывести товары для выбранной категории, исключая вывод в родительской категории. т.е. исключить вывод товаров категории "пылесосы" в категории "Бытовая техника", которая является родителем. Quote Link to post Share on other sites
Kosjak76 Posted March 23, 2014 Report Share Posted March 23, 2014 view/ProductsView.php Конкретная строка зависит от версии. Заменить $filter['category_id'] = $category->children; На $filter['category_id'] = $category->id; Но при таком варианте в категории "Бытовая техника" будет надпись "Товары не найдены". Quote Link to post Share on other sites
Dimon789 Posted March 24, 2014 Author Report Share Posted March 24, 2014 view/ProductsView.phpКонкретная строка зависит от версии.Заменить$filter['category_id'] = $category->children;На$filter['category_id'] = $category->id;Но при таком варианте в категории "Бытовая техника" будет надпись "Товары не найдены".а есть возможность в самом шаблоне? Quote Link to post Share on other sites
Dimon789 Posted March 24, 2014 Author Report Share Posted March 24, 2014 а есть возможность в самом шаблоне и еще вдогонку, как в родиетльской категории вывести дочерние категории? Quote Link to post Share on other sites
Виталий Анатольевич Posted March 24, 2014 Report Share Posted March 24, 2014 {if $category && $category->subcategories} {foreach $category->subcategories AS $cat} {if $cat->visible==1} <a href="catalog/{$cat->url}">{$cat->name|escape}</a> {/if} {/foreach} {/if} Quote Link to post Share on other sites
Dimon789 Posted March 24, 2014 Author Report Share Posted March 24, 2014 {if $category && $category->subcategories} {foreach $category->subcategories AS $cat} {if $cat->visible==1} <a href="catalog/{$cat->url}">{$cat->name|escape}</a> {/if} {/foreach} {/if} Блин ,а я полез в дебри ) спасиб Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.