Jump to content

Blok katagorii - modyfikacja


Recommended Posts

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

×
×
  • Create New...