mosso Posted January 12, 2017 Share Posted January 12, 2017 Buenos días. En la opción de categorías, al añadir texto o fotos en el editor a la hora de ver el resultado te sale el "Más" para que le des y puedas desplegar todo lo que tengas puesto en dicho editor. Lo que quiero es quitar el "Más" y que me salga todo desplegado por defecto. En las fotos se ve muy bien. Un saludo a todos y muchas gracias de antemano. Link to comment Share on other sites More sharing options...
nadie Posted January 12, 2017 Share Posted January 12, 2017 Buenos días, (Imagino Prestashop 1.6, plantilla por defecto) Fichero: /themes/tu-plantilla/category.tpl Tendras algo parecido a esto: {if Tools::strlen($category->description) > 350} <div id="category_description_short" class="rte">{$description_short}</div> <div id="category_description_full" class="unvisible rte">{$category->description}</div> <a href="{$link->getCategoryLink($category->id_category, $category->link_rewrite)|escape:'html':'UTF-8'}" class="lnk_more">{l s='More'}</a> {else} <div class="rte">{$category->description}</div> {/if} Si lo dejas directamente asi: <div class="rte">{$category->description}</div> veras directamente la descripcion completa y sin el boton mas.. Link to comment Share on other sites More sharing options...
mosso Posted January 13, 2017 Author Share Posted January 13, 2017 Muchas gracias por la ayuda pero ya lo hice y sigue igual. He probado ya múltiples opciones en /themes/tu-plantilla/category.tpl y ya no sé que hacer. Al final estoy intentando insertar contenido por CMS y cual es mi sorpresa que no sé muestran las imágenes en el front sin embargo en el back se visualizan perfectamente. Algún consejo por favor . Link to comment Share on other sites More sharing options...
nadie Posted January 13, 2017 Share Posted January 13, 2017 Muchas gracias por la ayuda pero ya lo hice y sigue igual. He probado ya múltiples opciones en /themes/tu-plantilla/category.tpl y ya no sé que hacer. . ¿Has limpiado cache en Parametros Avanzados -> Rendimiento? Saludos, Link to comment Share on other sites More sharing options...
mosso Posted January 13, 2017 Author Share Posted January 13, 2017 Si, la cache está limpia, de todas formas mi código original dice: {if Tools::strlen($category->description) > 350} <div id="category_description_short" class="rte">{$description_short}</div> <div id="category_description_full" class="unvisible rte">{$category->description}</div> {* <a href="{$link->getCategoryLink($category->id_category, $category->link_rewrite)|escape:'html':'UTF-8'}" class="lnk_more">{l s='More'}</a> *} {else} <div class="rte">{$category->description}</div> {/if} Difiere del que me dices tu: {if Tools::strlen($category->description) > 350} <div id="category_description_short" class="rte">{$description_short}</div> <div id="category_description_full" class="unvisible rte">{$category->description}</div> <a href="{$link->getCategoryLink($category->id_category, $category->link_rewrite)|escape:'html':'UTF-8'}" class="lnk_more">{l s='More'}</a> {else} <div class="rte">{$category->description}</div> {/if} La diferencia está en los * Link to comment Share on other sites More sharing options...
nadie Posted January 13, 2017 Share Posted January 13, 2017 Si lo dejas asi: {* if Tools::strlen($category->description) > 350} <div id="category_description_short" class="rte">{$description_short}</div> <div id="category_description_full" class="unvisible rte">{$category->description}</div> <a href="{$link->getCategoryLink($category->id_category, $category->link_rewrite)|escape:'html':'UTF-8'}" class="lnk_more">{l s='More'}</a> {else} *} <div class="rte">{$category->description}</div> {* {/if} *} Veras directamente la descripcion completa sin cortar y sin boton mas. ¿No es eso lo que quieres? Link to comment Share on other sites More sharing options...
nadie Posted January 13, 2017 Share Posted January 13, 2017 Recuerda que el código esta "2" veces repetido en el category.tpl (El cambio hazlo las 2 veces) Te adjunto imagen, para que veas que el código esta repetido dos veces Link to comment Share on other sites More sharing options...
mosso Posted January 13, 2017 Author Share Posted January 13, 2017 Muchísimas gracias por tu tiempo, mira te adjunto mi código completo, sigue sin funcionar: {* * 2007-2016 PrestaShop * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to [email protected] so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to http://www.prestashop.com for more information. * * @author PrestaShop SA <[email protected]> * @copyright 2007-2016 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA *} {include file="$tpl_dir./errors.tpl"} {if isset($category)} {if $category->id AND $category->active} {if $scenes || $category->description || $category->id_image} <div class="content_scene_cat"> {if $scenes} <div class="content_scene"> <!-- Scenes --> {include file="$tpl_dir./scenes.tpl" scenes=$scenes} {if $category->description} <div class="cat_desc rte"> {* if Tools::strlen($category->description) > 350} <div id="category_description_short" class="rte">{$description_short}</div> <div id="category_description_full" class="unvisible rte">{$category->description}</div> <a href="{$link->getCategoryLink($category->id_category, $category->link_rewrite)|escape:'html':'UTF-8'}" class="lnk_more">{l s='More'}</a> {else} *} <div class="rte">{$category->description}</div> {* {/if} *} </div> {/if} </div> {else} <!-- Category image --> <div class="content_scene_cat_bg"{if $category->id_image} style="background:url({$link->getCatImageLink($category->link_rewrite, $category->id_image, 'category_default')|escape:'html':'UTF-8'}) right center no-repeat; background-size:cover; min-height:{$categorySize.height}px;"{/if}> {if $category->description} <div class="cat_desc"> <span class="category-name"> {strip} {$category->name|escape:'html':'UTF-8'} {if isset($categoryNameComplement)} {$categoryNameComplement|escape:'html':'UTF-8'} {/if} {/strip} </span> {* if Tools::strlen($category->description) > 350} <div id="category_description_short" class="rte">{$description_short}</div> <div id="category_description_full" class="unvisible rte">{$category->description}</div> <a href="{$link->getCategoryLink($category->id_category, $category->link_rewrite)|escape:'html':'UTF-8'}" class="lnk_more">{l s='More'}</a> {else} *} <div class="rte">{$category->description}</div> {* {/if} *} </div> {/if} </div> {/if} </div> {/if} <h1 class="page-heading{if (isset($subcategories) && !$products) || (isset($subcategories) && $products) || !isset($subcategories) && $products} product-listing{/if}"><span class="cat-name">{$category->name|escape:'html':'UTF-8'}{if isset($categoryNameComplement)} {$categoryNameComplement|escape:'html':'UTF-8'}{/if}</span>{include file="$tpl_dir./category-count.tpl"}</h1> {if isset($subcategories)} {if (isset($display_subcategories) && $display_subcategories eq 1) || !isset($display_subcategories) } <!-- Subcategories --> <div id="subcategories"> <p class="subcategory-heading">{l s='Subcategories'}</p> <ul class="clearfix"> {foreach from=$subcategories item=subcategory} <li> <div class="subcategory-image"> <a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'html':'UTF-8'}" title="{$subcategory.name|escape:'html':'UTF-8'}" class="img"> {if $subcategory.id_image} <img class="replace-2x" src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'medium_default')|escape:'html':'UTF-8'}" alt="{$subcategory.name|escape:'html':'UTF-8'}" width="{$mediumSize.width}" height="{$mediumSize.height}" /> {else} <img class="replace-2x" src="{$img_cat_dir}{$lang_iso}-default-medium_default.jpg" alt="{$subcategory.name|escape:'html':'UTF-8'}" width="{$mediumSize.width}" height="{$mediumSize.height}" /> {/if} </a> </div> <h5><a class="subcategory-name" href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'html':'UTF-8'}">{$subcategory.name|truncate:25:'...'|escape:'html':'UTF-8'}</a></h5> {if $subcategory.description} <div class="cat_desc">{$subcategory.description}</div> {/if} </li> {/foreach} </ul> </div> {/if} {/if} {if $products} <div class="content_sortPagiBar clearfix"> <div class="sortPagiBar clearfix"> {include file="./product-sort.tpl"} {include file="./nbr-product-page.tpl"} </div> <div class="top-pagination-content clearfix"> {include file="./product-compare.tpl"} {include file="$tpl_dir./pagination.tpl"} </div> </div> {include file="./product-list.tpl" products=$products} <div class="content_sortPagiBar"> <div class="bottom-pagination-content clearfix"> {include file="./product-compare.tpl" paginationId='bottom'} {include file="./pagination.tpl" paginationId='bottom'} </div> </div> {/if} {elseif $category->id} <p class="alert alert-warning">{l s='This category is currently unavailable.'}</p> {/if} {/if} Link to comment Share on other sites More sharing options...
nadie Posted January 13, 2017 Share Posted January 13, 2017 Fichero Plantilla por defecto - Prestashop 1.6.1.10 modificado. Te lo subo en este mismo mensaje category.zip Link to comment Share on other sites More sharing options...
mosso Posted January 16, 2017 Author Share Posted January 16, 2017 Ya he sustituido el archivo por el tuyo y sigue sin funcionar. Link to comment Share on other sites More sharing options...
Sergio Ruiz Posted January 16, 2017 Share Posted January 16, 2017 (edited) Ya he sustituido el archivo por el tuyo y sigue sin funcionar. A mi me funciona lo que dice "Nadie". ¿Pero tienes descripcion en la captura que mandas? ¿Al pulsar mas, se ve la descripcion? (Lo digo porque en tu captura que adjuntas en este ultimo mensaje no la veo ni recortada) Edited January 16, 2017 by Sergio Ruiz (see edit history) Link to comment Share on other sites More sharing options...
mosso Posted January 16, 2017 Author Share Posted January 16, 2017 Si claro al pulsar más se ve la descripción completa, no sé que puede pasar Link to comment Share on other sites More sharing options...
mosso Posted January 16, 2017 Author Share Posted January 16, 2017 Compañeros tema solucionado, era el tema de la cache que no conseguía limpiarla en condiciones. Muchas gracias por vuestro tiempo empleado, sois los mejores!!! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now