Nastin Posted December 31, 2014 Share Posted December 31, 2014 (edited) Saludos! Hacia tiempo que no escribía por aquí Llevo tiempo intentando añadir una url externa a mi bloque categorias pero despues de leer en el foro post antiguos no cosigo dar con la solución. En teoria para añadir una categoria a mi bloque que sea un enlace externo tengo que modificar el archivo category-tree-branch.tpl alojado en la carpeta modulos de mi plantilla verdad? Pues bien después de estudiar mucho todo el codigo que obtengo es este: <li {if isset($last) && $last == 'true'}class="last"{/if}> <a href="{if $node.id=='48'}http://marca.com {else} {$node.link|escape:'html':'UTF-8'}"{if isset($currentCategoryId) && $node.id == $currentCategoryId} class="selected"{/if} title="{$node.desc|strip_tags|trim|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> Por lo visto tengo que tener mal el codigo en algun punto pues la pagina deja de cargarme cuando aplico los cambios. Seguro que es una tonteria pero no soy ningun experto y no consigo encontrar el fallo. Alguien sabe por que? Un saludo y felices Fiestas!! Edited December 31, 2014 by Nastin (see edit history) Link to comment Share on other sites More sharing options...
galindogadea Posted December 31, 2014 Share Posted December 31, 2014 ¿No te falta cerrar el IF? <a {if $node.id=="X"} href="http://marca.com" {else} href="{$node.link|escape:'html':'UTF-8'}" {/if} {if isset($currentCategoryId) && $node.id == $currentCategoryId} class="selected"{/if} title="{$node.desc|strip_tags|trim|escape:'html':'UTF-8'}"> {$node.name|escape:'html':'UTF-8'} </a> Link to comment Share on other sites More sharing options...
Nastin Posted December 31, 2014 Author Share Posted December 31, 2014 Guauuu!! Q bobo, jejeje Muchas gracias galindogadea!! Problema resuelto Un saludo y felices año!!!! Link to comment Share on other sites More sharing options...
Recommended Posts