Nekein Posted December 3, 2012 Share Posted December 3, 2012 (edited) Hola, buenas, Estoy haciendo una tienda de infusiones, y tengo un problemilla con las subcategorias. No sé qué he borrado, pero ya no me sale visible la descripción que tenía de cada subcategoría de la categoria "inicio". El archivo .tpl que estoy tocando es el /themes/nuevatheme/category.tpl, no sé si es éste el que me da problemas... copio el código que tengo ahora: {include file="$tpl_dir./breadcrumb.tpl"}{include file="$tpl_dir./errors.tpl"} {if isset($category)} {if $category->id AND $category->active} <h1> {strip} {$category->name|escape:'htmlall':'UTF-8'} {if isset($categoryNameComplement)} {$categoryNameComplement|escape:'htmlall':'UTF-8'} {/if} {/strip} </h1> {if $scenes} <!-- Scenes --> {include file="$tpl_dir./scenes.tpl" scenes=$scenes} {else} <!-- Category image --> {if $category->id_image} <div class="align_center"> <img src="{$link->getCatImageLink($category->link_rewrite, $category->id_image, 'category')}" alt="{$category->name|escape:'htmlall':'UTF-8'}" title="{$category->name|escape:'htmlall':'UTF-8'}" id="categoryImage" width="{$categorySize.width}" height="{$categorySize.height}" /> </div> {/if} {/if} {if isset($subcategories)} <!-- Subcategories --> <div id="subcategories"> <ul class="inline_list"> {foreach from=$subcategories item=subcategory} <li> <h3><a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}">{$subcategory.name|escape:'htmlall':'UTF-8'}</a></h3> {if $subcategory.id_image} <img src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'medium')}" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" /> {else} <img src="{$img_cat_dir}default-medium.jpg" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" /> {/if} </a> <p class="product_desc"><a class="product_descr" href="{$subcategory.link|escape:'htmlall':'UTF-8'}">{$subcategory.description_short|truncate:360:'...'|strip_tags:'UTF-8'}</a></p> </li> {/foreach} </ul> <br class="clear"/> </div> {/if} {if $products} {include file="$tpl_dir./product-compare.tpl"} {include file="$tpl_dir./product-sort.tpl"} {include file="$tpl_dir./product-list.tpl" products=$products} {include file="$tpl_dir./product-compare.tpl"} {include file="$tpl_dir./pagination.tpl"} {elseif !isset($subcategories)} <p class="warning">{l s='There are no products in this category.'}</p> {/if} {elseif $category->id} <p class="warning">{l s='This category is currently unavailable.'}</p> {/if} {/if} Edited December 3, 2012 by Nekein (see edit history) Link to comment Share on other sites More sharing options...
nadie Posted December 3, 2012 Share Posted December 3, 2012 En tu codigo que has pegado cambia esto: {$subcategory.description_short|truncate:360:'...'|strip_tags:'UTF-8'} Por esto: {$subcategory.description|truncate:360:'...'|strip_tags:'UTF-8'} 1 Link to comment Share on other sites More sharing options...
Nekein Posted December 3, 2012 Author Share Posted December 3, 2012 Gracias Nadie! Ya está solucionado Link to comment Share on other sites More sharing options...
Nekein Posted December 3, 2012 Author Share Posted December 3, 2012 Losiento, soy nueva y no veo como se cambia el título a SOLUCIONADO, donde es? Link to comment Share on other sites More sharing options...
nadie Posted December 3, 2012 Share Posted December 3, 2012 Gracias Nadie! Ya está solucionado Un placer ayudarte y servirte. Link to comment Share on other sites More sharing options...
nadie Posted December 3, 2012 Share Posted December 3, 2012 Losiento, soy nueva y no veo como se cambia el título a SOLUCIONADO, donde es? Editando el primer mensaje del tema, pulsando en "Editar" y despues en "Usar editor completo", en ese momento podras cambiar el titulo del tema y añadir la palabra "Solucionado" al titulo del tema. Un Saludo, Link to comment Share on other sites More sharing options...
Recommended Posts