Jump to content

incluir imagenes en el menu categorias


hachedocho

Recommended Posts

Hola Muy buenas,

 

Intento incluir en el menu de las categorias una imagen. intento aprovechas la misma miniatura que me crea el prestashop al dar de alta mi categoria. hago esto:

 

<li {if isset($last) && $last == 'true'}class="last"{/if}>
<img src="{$link->getCatImageLink($node.name, $node.id, 'small_default')}" align="absmiddle" width="{$image}" style="margin-left:3px; margin-bottom:3px; float:right">
<a {if $node.children|@count > 0}style="cursor: pointer;" onclick="toggleBranch($(this).prev())"{else}href="{$node.link}"{/if} {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>

 

Lo unico que hago es incluierle al archivo categoru-tree-branch.tpl la linea

<img src="{$link->getCatImageLink($node.name, $node.id, 'small_default')}" align="absmiddle" width="{$image}" style="margin-left:3px; margin-bottom:3px; float:right">

 

Alguien puede ayudarme. Gracias

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...