imogen Posted May 6, 2014 Share Posted May 6, 2014 (edited) Witam, czy jest szansa aby dodać kategorie do "bloku kategorii" z zewnętrznym linkiem Kategoria prowadziłaby na inna stronę? Prestashop 1.6 Edited May 6, 2014 by imogen (see edit history) Link to comment Share on other sites More sharing options...
vekia Posted May 6, 2014 Share Posted May 6, 2014 tylko modyfikując plik category-tree-branch.tpl i wstawiając swój link manualnie. Link to comment Share on other sites More sharing options...
imogen Posted May 7, 2014 Author Share Posted May 7, 2014 w której sekcji wstawic kod - czy musze na coś zwracać uwagę przy wstawianiu swojego kody ? Link to comment Share on other sites More sharing options...
vekia Posted May 8, 2014 Share Posted May 8, 2014 jest tam taki kod: <li class="category_{$node.id}{if isset($last) && $last == 'true'} last{/if}"> <a href="{$node.link|escape:'html':'UTF-8'}" {if isset($currentCategoryId) && $node.id == $currentCategoryId}class="selected"{/if} title="{$node.desc|strip_tags|trim|truncate:255:'...'|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 $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> dla przykładu, chcemy wstawić własny link za kategorią o numerze ID=10 zatem na końcu pliku wstawiamy: {if $node.id==10} <li> <a href="http://mypresta.eu">PrestaShop</a> </li> {/if} Link to comment Share on other sites More sharing options...
Recommended Posts