coldlu Posted March 28, 2014 Share Posted March 28, 2014 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 More sharing options...
nadie Posted March 28, 2014 Share Posted March 28, 2014 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 More sharing options...
coldlu Posted March 31, 2014 Author Share Posted March 31, 2014 Hola nadie, lo primero fácil, lo segundo del tpl no tanto. Qué archivo exactamente edito y qué añado? Gracias Link to comment Share on other sites More sharing options...
nadie Posted March 31, 2014 Share Posted March 31, 2014 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 More sharing options...
coldlu Posted April 1, 2014 Author Share Posted April 1, 2014 Hecho, y la imagen sale más grande. El único problema es que no aparece la foto del producto sino un signo de interrogación Link to comment Share on other sites More sharing options...
coldlu Posted April 2, 2014 Author Share Posted April 2, 2014 Alguien sabe? Link to comment Share on other sites More sharing options...
Sergio Ruiz Posted April 2, 2014 Share Posted April 2, 2014 Hecho, y la imagen sale más grande. El único problema es que no aparece la foto del producto sino un signo de interrogación ¿Pero has creado el nuevo tipo de imagen en la pestaña Preferencias -> Imagenes? 1 Link to comment Share on other sites More sharing options...
coldlu Posted April 2, 2014 Author Share Posted April 2, 2014 Sí, y le he puesto al tpl el nombre de la nueva imagen. Link to comment Share on other sites More sharing options...
Sergio Ruiz Posted April 2, 2014 Share Posted April 2, 2014 Sí, y le he puesto al tpl el nombre de la nueva imagen. ¿Puedo ver la direccion de tu web? Link to comment Share on other sites More sharing options...
coldlu Posted April 2, 2014 Author Share Posted April 2, 2014 Claro! http://oh-mint.com/index.php Link to comment Share on other sites More sharing options...
nadie Posted April 2, 2014 Share Posted April 2, 2014 Veo varios errores en tu tienda, dime el contenido de como has dejado el fichero tpl del bloque de nuevos productos. Link to comment Share on other sites More sharing options...
coldlu Posted April 2, 2014 Author Share Posted April 2, 2014 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 More sharing options...
Recommended Posts