Jump to content

Modificare Blocco categorie


pampo

Recommended Posts

Avrei bisogno di un aiuto per modificare il blocco categorie. In particolare non riesco a capire come far si che i nomi delle categorie (ma non delle sottocategorie) non siano cliccabili.

Ho modificato il file categorie-tree-branch.tpl in questo modo

 

<li {if isset($last) && $last == 'true'}class="last"{/if}>
<a href="#" {if isset($currentCategoryId) && ($node.id == $currentCategoryId)}class="selected"{/if} title="{$node.desc|escape:html:'UTF-8'}">{$node.name|escape:html:'UTF-8'}</a>
{if $node.children|@count > 0}
 <ul>

 {foreach from=$node.children item=child name=categoryTreeBranch}
  {if isset($smarty.foreach.categoryTreeBranch) && $smarty.foreach.categoryTreeBranch.last}
   {include file="$branche_tpl_path" node=$child last='true'}
  {else}
   {include file="$branche_tpl_path" node=$child last='false'}
  {/if}
 {/foreach}

 </ul>
{/if}
</li>

 

in pratica mettendo un # al primo href, però così facendo anche le sottocategorie non sono più cliccabili. Qualcuno mi può aiutare?

Link to comment
Share on other sites

  • 2 weeks later...

ciao, hai provato a guardare quale template viene chiamato qui ?

{include file="$branche_tpl_path" node=$child last='true'}

così a naso è ricorsivo

 

ciao, in che senso è ricorsivo?

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...