Jump to content

Tamaño productos nuevos


coldlu

Recommended Posts

Hola,

ayer escribí este tema http://www.prestashop.com/forums/topic/318650-solucionado-imagenes-de-los-productos/

 

Y se solucionó, pero al cambiar esos datos, el tamaño de las imágenes del módulo novedades se me redimensionaron también. ¿Hay alguna manera de poner éstas al tamaño que quiera sin que se me cambie el tamaño a las otras?

 

Un saludo y graaacias

Link to comment
Share on other sites

Hola,

ayer escribí este tema http://www.prestashop.com/forums/topic/318650-solucionado-imagenes-de-los-productos/

 

Y se solucionó, pero al cambiar esos datos, el tamaño de las imágenes del módulo novedades se me redimensionaron también. ¿Hay alguna manera de poner éstas al tamaño que quiera sin que se me cambie el tamaño a las otras?

 

Un saludo y graaacias

 

Puedes crear un nuevo tipo de imagen en la pestaña Preferencias -> Imagenes y luego editar el tpl donde quieras que se use ese nuevo tipo de imagen, asi no tendras el problema de que al aumentar el nuevo tamaño de imagen creado, afecte a otras partes de la tienda.

Link to comment
Share on other sites

Por lo que veo en tu caso, te refieres al bloque de novedades, que segun he visto, hicistes esto: http://www.prestashop.com/forums/topic/316596-solucionado-colocar-solo-imagenes-en-el-bloque-de-novedades/?do=findComment&comment=1602051 para que se mostraran solo las imagenes en ese bloque, en ese caso, en dicho fichero, cambia esto:
 

<img src="{$link->getImageLink($product.link_rewrite, $product.id_image, 'medium_default')|escape:'html'}" height="{$mediumSize.height}" width="{$mediumSize.width}" alt="{$product.legend|escape:html:'UTF-8'}" />

por
 

<img src="{$link->getImageLink($product.link_rewrite, $product.id_image, 'nuevo_tipo_de_imagen')|escape:'html'}"  alt="{$product.legend|escape:html:'UTF-8'}" />

Donde he puesto:

nuevo_tipo_de_imagen

colocas el nuevo tipo de imagen que has creado.

Link to comment
Share on other sites

Así, tal cual 

 

 

<!-- MODULE Block new products -->

<div id="new-products_block_right" class="block products_block">
<p class="title_block"><a href="{$link->getPageLink('new-products')|escape:'html'}" title="{l s='New products' mod='blocknewproducts'}">{l s='New products' mod='blocknewproducts'}</a></p>
<div class="block_content">
{if $new_products !== false}
{* <ul class="product_images clearfix">
{foreach from=$new_products item='product' name='newProducts'}
{if $smarty.foreach.newProducts.index < 2}
<li{if $smarty.foreach.newProducts.first} class="first"{/if}><a href="{$product.link|escape:'html'}" title="{$product.legend|escape:html:'UTF-8'}"><img src="{$link->getImageLink($product.link_rewrite, $product.id_image, 'medium_default')|escape:'html'}" height="{$mediumSize.height}" width="{$mediumSize.width}" alt="{$product.legend|escape:html:'UTF-8'}" /></a></li>
{/if}
{/foreach}
</ul> *}
<dl class="products">
{foreach from=$new_products item=newproduct name=myLoop}
<a href="{$newproduct.link|escape:'html'}" title="{$newproduct.legend|escape:html:'UTF-8'}"><img src="{$link->getImageLink($product.link_rewrite, $product.id_image, 'nuevos_productos')|escape:'html'}"  alt="{$product.legend|escape:html:'UTF-8'}" /></a>
{* <dt class="{if $smarty.foreach.myLoop.first}first_item{elseif $smarty.foreach.myLoop.last}last_item{else}item{/if}"><a href="{$newproduct.link|escape:'html'}" title="{$newproduct.name|escape:html:'UTF-8'}">{$newproduct.name|strip_tags|escape:html:'UTF-8'}</a></dt>
{if $newproduct.description_short}<dd class="{if $smarty.foreach.myLoop.first}first_item{elseif $smarty.foreach.myLoop.last}last_item{else}item{/if}"><a href="{$newproduct.link|escape:'html'}">{$newproduct.description_short|strip_tags:'UTF-8'|truncate:75:'...'}</a><br /><a href="{$newproduct.link}" class="lnk_more">{l s='Read more' mod='blocknewproducts'}</a></dd>{/if} *}
{/foreach}
</dl><br />
<p><a href="{$link->getPageLink('new-products')|escape:'html'}" title="{l s='All new products' mod='blocknewproducts'}" class="button_large">» {l s='All new products' mod='blocknewproducts'}</a></p>
{else}
<p>» {l s='No new products at this time' mod='blocknewproducts'}</p>
{/if}
</div>
</div>
<!-- /MODULE Block new products -->

 

Link to comment
Share on other sites

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