lukaslukas12 Posted March 19, 2016 Share Posted March 19, 2016 Jak w preście w stopce wyświetlić listę z linkami do podkategorii z danej kategorii? Czyli mam np Kategorię Zabawki, a w niej Klocki, Samochody itd. I chciałbym aby automatycznie umieszczało wszystkie podkategorie, ponieważ nie chce mi się tego edytować za każdym razem. Z góry dziękuję za informacje Link to comment Share on other sites More sharing options...
0 krzysiek_web Posted March 19, 2016 Share Posted March 19, 2016 Kod odpowiedzialny za podkategorie. {if isset($subcategories)} {if (isset($display_subcategories) && $display_subcategories eq 1) || !isset($display_subcategories) } <!-- Subcategories --> <div id="subcategories"> <ul class="clearfix"> {foreach from=$subcategories item=subcategory} <li> <div class="subcategory-image"> <a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'html':'UTF-8'}" title="{$subcategory.name|escape:'html':'UTF-8'}" class="img"> {if $subcategory.id_image} <img class="replace-2x" src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'medium_default')|escape:'html':'UTF-8'}" alt="{$subcategory.name|escape:'html':'UTF-8'}" width="{$mediumSize.width}" height="{$mediumSize.height}" /> {else} <img class="replace-2x" src="{$img_cat_dir}{$lang_iso}-default-medium_default.jpg" alt="{$subcategory.name|escape:'html':'UTF-8'}" width="{$mediumSize.width}" height="{$mediumSize.height}" /> {/if} </a> </div> {if $subcategory.description} <h5><a class="subcategory-name" href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'html':'UTF-8'}">{$subcategory.name|truncate:25:'...'|escape:'html':'UTF-8'}</a></h5> <div class="cat_desc">{$subcategory.description}</div> {/if} </li> {/foreach} </ul> </div> {/if} {/if} Link to comment Share on other sites More sharing options...
0 lukaslukas12 Posted March 19, 2016 Author Share Posted March 19, 2016 (edited) Kod ten pokazuje podkategoriie jak już wejdziemy do tej kategorii. A ja chce wyświetlić podkategorie z określonego ID kategorii w stopce na wszystkich podstronach . Edited March 19, 2016 by lukaslukas12 (see edit history) Link to comment Share on other sites More sharing options...
Question
lukaslukas12
Jak w preście w stopce wyświetlić listę z linkami do podkategorii z danej kategorii?
Czyli mam np Kategorię Zabawki, a w niej Klocki, Samochody itd.
I chciałbym aby automatycznie umieszczało wszystkie podkategorie, ponieważ nie chce mi się tego edytować za każdym razem.
Z góry dziękuję za informacje
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now