Jump to content

Descripción duplicada en categorias (Solucionado)


mpzombie

Recommended Posts

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 by mpzombie (see edit history)
Link to comment
Share on other sites

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

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

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

Guest
This topic is now closed to further replies.
×
×
  • Create New...