Joan Guasch Posted September 18, 2013 Share Posted September 18, 2013 (edited) Buenas tardes y gracias de antemano, Me surgió la siguiente duda: me gustaría eliminar el enlace de la categoría padre del menú lateral, pero mantener su función de desplegable y los enlaces de las sub-categorías. Os dejo una imagen y el enlace de la tienda para que podáis echarle un vistazo. www.protechsellers.es Como siempre gracias, Edited October 28, 2013 by Joan Guasch (see edit history) Link to comment Share on other sites More sharing options...
Sergio Ruiz Posted September 18, 2013 Share Posted September 18, 2013 Supongo que tendras que mirar dentro de: /modules/blockcategories/ o /themes/plantilla/modules/blockcategories/ para cambiar eso.. Link to comment Share on other sites More sharing options...
Joan Guasch Posted October 4, 2013 Author Share Posted October 4, 2013 Gracias, y disculpa la tardanza. Estuve unos días de vacaciones... Ye ha mirado por ahí, en los tpl, pero soy incapaz de localizar el enlace para cambiarlo o anularlo. ¿Alguna idea? Gracias de nuevo. Joan Link to comment Share on other sites More sharing options...
javier_caballero Posted October 26, 2013 Share Posted October 26, 2013 pues estoy liado con lo mismo¡¡¡ si consigo hacerlo te digo algo Link to comment Share on other sites More sharing options...
nadie Posted October 26, 2013 Share Posted October 26, 2013 Probar esto. Editar ficheros: /modules/blockcategories/category-tree-branch.tpl y /themes/plantilla/modules/blockcategories/category-tree-branch.tpl --- Buscar esto: <li {if isset($last) && $last == 'true'}class="last"{/if}> <a href="{$node.link|escape:'htmlall':'UTF-8'}" {if isset($currentCategoryId) && $node.id == $currentCategoryId}class="selected"{/if} title="{$node.desc|strip_tags|trim|escape:'htmlall':'UTF-8'}">{$node.name|escape:'htmlall':'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> Y dejarlo asi: <li {if isset($last) && $last == 'true'}class="last"{/if}> {if $node.children|@count > 0} <a {if isset($currentCategoryId) && $node.id == $currentCategoryId}class="selected"{/if} title="{$node.desc|strip_tags|trim|escape:'htmlall':'UTF-8'}">{$node.name|escape:'htmlall':'UTF-8'}</a> <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> {else} <a href="{$node.link|escape:'htmlall':'UTF-8'}" {if isset($currentCategoryId) && $node.id == $currentCategoryId}class="selected"{/if} title="{$node.desc|strip_tags|trim|escape:'htmlall':'UTF-8'}">{$node.name|escape:'htmlall':'UTF-8'}</a> {/if} </li> Recordar que no solo debeis forzar compilacion en la pestaña Parametros Avanzados -> Rendimiento, si no vaciar tambien la cache de smarty, si no teneis el botoncito de vaciar la cache de smarty, usar directamente este modulo: http://www.prestashop.com/forums/topic/238282-modulo-flush-caches-compile-ps15/ y limpiar todo directamente. 2 Link to comment Share on other sites More sharing options...
javier_caballero Posted October 26, 2013 Share Posted October 26, 2013 Muchas gracias nadie...había encontrado ya esto también: http://www.prestashop.com/forums/topic/280171-solved-remove-hover-link-to-parent-category/ Gracias, da gusto trabajar así con la ayuda de todos¡¡ Link to comment Share on other sites More sharing options...
nadie Posted October 26, 2013 Share Posted October 26, 2013 Muchas gracias nadie...había encontrado ya esto también: http://www.prestashop.com/forums/topic/280171-solved-remove-hover-link-to-parent-category/ Gracias, da gusto trabajar así con la ayuda de todos¡¡ ¿Entonces tema solucionado? 1 Link to comment Share on other sites More sharing options...
javier_caballero Posted October 28, 2013 Share Posted October 28, 2013 Tema solucionado Link to comment Share on other sites More sharing options...
nadie Posted October 28, 2013 Share Posted October 28, 2013 Tema solucionado Perfecto ! Link to comment Share on other sites More sharing options...
Recommended Posts