MacDan Posted September 9, 2011 Share Posted September 9, 2011 Also ganz simpel in der blockcategories.tpl werden die einzelnen Kategoriepunkte aufgerufen. <!-- Block categories module --> <div id="categories_block_left" class="block"> <div class="block_content"> <ul class="tree {if $isDhtml}dhtml{/if}"> {foreach from=$blockCategTree.children item=child name=blockCategTree} {if $smarty.foreach.blockCategTree.last} {include file="$branche_tpl_path" node=$child last='true'} {else} {include file="$branche_tpl_path" node=$child} {/if} {/foreach} </ul> {* Javascript moved here to fix bug #PSCFI-151 *} <script type="text/javascript"> // <![CDATA[ // we hide the tree only if JavaScript is activated $('div#categories_block_left ul.dhtml').hide(); // ]]> </script> </div> </div> <!-- /Block categories module --> Leider lässt sich über diesen Code das Design der einzelnen Elemente nur gleich anpassen. Habe bei einem Theme gesehen das dessen Menupunkte verschiedenfarbig waren und er eine class zugeordnet hat. <li > <a href="yadayada" class="blue" title="etc">Lorem</a> </li> Leider wird von Haus aus aber die class nicht gesetzt <li > <a href="yadayada" " title="etc">Lorem</a> </li> Dessen blockcategories.tpl wurde auch nicht geändert. Also muss das irgendwoanders herkommen. Eine Idee? Edit: Im übrigen wird sobald eine Kategorie aktiv ist, dem Menupunkt eine class zugeordnet.. class="selected" regards denny Link to comment Share on other sites More sharing options...
guest* Posted September 9, 2011 Share Posted September 9, 2011 Ich weiss es auch nicht genau, tippe aber auf /tools/smarty/plugins oder sysplugins. Probiere mal. Ich bin leider kein Coder. Link to comment Share on other sites More sharing options...
MacDan Posted September 9, 2011 Author Share Posted September 9, 2011 ah habs <a href="{$node.link}" class="{cycle values='x,y,z'} {if isset($currentCategoryId) && ($node.id == $currentCategoryId)} selected{/if}" in category-tree-branch.tpl 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