DARKF3D3 Posted August 9, 2018 Share Posted August 9, 2018 Per poter mostrare l'elenco delle sottocategorie sulle pagine delle categorie ho utilizzato aggiunto il seguente codice al file /catalog/listing/category.tpl: {block name='category_subcategories'} <aside class="hidden-sm-down clearfix"> {if $subcategories|count} <nav class="subcategories"> <ul> {foreach from=$subcategories item="subcategory"} <li> {block name='category_miniature'} {include file='catalog/_partials/miniatures/category.tpl' category=$subcategory} {/block} </li> {/foreach} </ul> </nav> {/if} </aside> {/block} In questo modo tutte le sotocategorie della categoria attuale vengono mostrate. Ora però vorrei poter mostrare le sottocategorie, anche quando ci si trova all'interno di una sottocategoria, mostrando le sottocategorie della categoria genitore. In pratica le altre sottocategorie sullo stesso livello di quella attuale. Sapete come si può fare? Link to comment Share on other sites More sharing options...
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