mpzombie Posted September 29, 2013 Share Posted September 29, 2013 (edited) Buenas Estoy agregando descripciónes en las categorías, y al visualizarlas el contenido me aparece duplicado. alguien sabe a que es debido esto?. http://www.prestashop.com/forums/uploads/monthly_09_2013/post-664193-0-46339000-1379010656.png se repite 2 veces lo que escribo en Descripcion. No estoy haciendo copy & paste de la descripcion a la meta descripcion cosa que no creo tenga nada que ver pero por si acaso aclaro que no lo estoy haciendo. La version de PS es la 1.5.5 Saludos. Edited September 29, 2013 by mpzombie (see edit history) Link to comment Share on other sites More sharing options...
nadie Posted September 29, 2013 Share Posted September 29, 2013 En el fichero: /themes/plantilla/category.tpl La descripción de la categoría, la estas imprimiendo así: {if $category->description} <div class="cat_desc"> {if strlen($category->description) > 120} <p id="category_description_short">{$category->description|truncate:120}</p> <p id="category_description_full" style="display:none">{$category->description}</p> <a href="#" onclick="$('#category_description_short').hide(); $('#category_description_full').show(); $(this).hide(); return false;" class="lnk_more">{l s='More'}</a> {else} <p>{$category->description}</p> {/if} </div> {/if} ¿? Si lo tienes así, prueba dejarlo por si las moscas asi: {if $category->description} <div class="cat_desc"> {* {if strlen($category->description) > 120} <p id="category_description_short">{$category->description|truncate:120}</p> <p id="category_description_full" style="display:none">{$category->description}</p> <a href="#" onclick="$('#category_description_short').hide(); $('#category_description_full').show(); $(this).hide(); return false;" class="lnk_more">{l s='More'}</a> {else} *} <p>{$category->description}</p> {* {/if} *} </div> {/if} De esa manera se vera directamente la descripción completa de la categoría. Link to comment Share on other sites More sharing options...
nadie Posted September 29, 2013 Share Posted September 29, 2013 O prueba aumentar el truncate. (Es decir colocar un numero mayor a 120) Link to comment Share on other sites More sharing options...
nadie Posted September 29, 2013 Share Posted September 29, 2013 Al parecer en el foro Inglés: http://www.prestashop.com/forums/topic/273022-info-regarding-group-description también se comenta esto. Link to comment Share on other sites More sharing options...
mpzombie Posted September 29, 2013 Author Share Posted September 29, 2013 Al parecer en el foro Inglés: http://www.prestashop.com/forums/topic/273022-info-regarding-group-description también se comenta esto. Gracias Victor por la ayuda me sirivio lo del foro en ingles lo solucione con esto: OK, to fix this, we comment-out some code: login to your host. then (with FTP or cPanel->File manager): edit the file: themes/<your theme folder>/category.tpl (make BACKUP first!): here you see the code: (about 1 screen down from the top) {if $category->description} <div class="cat_desc"> {* {if strlen($category->description) > 120} <p id="category_description_short">{$category->description|truncate:120}</p> <p id="category_description_full" style="display:none">{$category->description}</p> <a href="#" onclick="$('#category_description_short').hide(); $('#category_description_full').show(); $(this).hide(); return false;" class="lnk_more">{l s='More'}</a> {else} *} <p>{$category->description}</p> {* {/if} *} </div> {/if} and add the {* ....code... *} (2x) save the file and reload your category page. N.B. You may need to (TEMPORARILY!!): - turn OFF your cache and - 'Template cache' set to "Recompile templates if the files have been updated" in Advanced Parameters->Performance to see the changes. (Don't forget to turn cache back ON afterwards!) What it does: It takes out some silly code that truncates the description of your category if it is very long. It let's the user then click on the text to see the whole description. Apparently this gives problems when using layout-decoration code like font size etc. So let's just take the code out and always present the whole description from the beginning. Hope this helps, pascal Link to comment Share on other sites More sharing options...
mpzombie Posted September 29, 2013 Author Share Posted September 29, 2013 O prueba aumentar el truncate. (Es decir colocar un numero mayor a 120) Esto tambien funciona siempre y cuando se coloque un numero lo suficiente grande como para que nunca alcance la cantidad maxima de caracteres. Link to comment Share on other sites More sharing options...
nadie Posted September 29, 2013 Share Posted September 29, 2013 Perfecto ! Un placer ayudarte y servirte!Un saludo y recuerda que estaremos en el foro, para guiarte por este mundo oscuro y tenebroso. PD: Cierro tema. Para cualquier otra duda, no dudes en crear un tema nuevo en el foro y estaré encantando de atenderte. Saludos ! Link to comment Share on other sites More sharing options...
nadie Posted October 2, 2013 Share Posted October 2, 2013 Vuelvo abrir el tema, no me gusta esa solución, mirar este parche: https://github.com/PrestaShop/PrestaShop/commit/340f6cebe4572d269ca4d67331b2d67ae8169c3e Link to comment Share on other sites More sharing options...
mpzombie Posted October 3, 2013 Author Share Posted October 3, 2013 Vuelvo abrir el tema, no me gusta esa solución, mirar este parche: https://github.com/PrestaShop/PrestaShop/commit/340f6cebe4572d269ca4d67331b2d67ae8169c3e Funciono perfecto, gracias victor Link to comment Share on other sites More sharing options...
nadie Posted October 3, 2013 Share Posted October 3, 2013 Funciono perfecto, gracias victor Perfecto ! PD: Ahora si que cierro el tema xDDDD Nos vemos por el foro. Saludos ! Link to comment Share on other sites More sharing options...
Recommended Posts