MOLTO Posted September 5, 2013 Share Posted September 5, 2013 (edited) Hola Estimados, Intento agrandar las imágenes de la subcategoría en la versión 1.5.5 de prestashop, usé esta solución: http://www.prestashop.com/forums/topic/222622-cambiar-tamano-imagen-subcategorias-solucionado/ Agregando un nuevo tipo de imagen al que llamé "subcategoria_default" y luego modifiqué el archivo category.tpl y luego regeneré imágenes, tal como se indica en la solución pero sigo viendo las imagenes del mismo tamaño. Aprovecho de preguntar como eliminar el recuadro y la linea punteada que separa cada imagen. Espero puedan ayudarme para poder continuar por este camino pedregoso. A proposito mi sitio está acá www.moltovivace.cl/tienda_mv Saludos y gracias de antemano! Edited September 5, 2013 by MOLTO (see edit history) 1 Link to comment Share on other sites More sharing options...
Sergio Ruiz Posted September 5, 2013 Share Posted September 5, 2013 El tipo subcategoria_default que has creado ¿Le has dicho que se aplique a las categorías? Yo ahora mismo no veo ninguna imagen de las subcategorias, por ejemplo aquí: http://www.moltovivace.cl/tienda_mv/9-decoracin Link to comment Share on other sites More sharing options...
Sergio Ruiz Posted September 5, 2013 Share Posted September 5, 2013 (edited) Muestro Imagen Muestro codigo category.tpl {if $subcategory.id_image} <img src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'sergio_ruiz')|escape:'html'}" alt="" /> {else} <img src="{$img_cat_dir}default-sergio_ruiz.jpg" alt="" /> {/if} Edited September 5, 2013 by Sergio Ruiz (see edit history) Link to comment Share on other sites More sharing options...
MOLTO Posted September 5, 2013 Author Share Posted September 5, 2013 (edited) Hola Sergio, Gracias a ti lo solucioné, me faltaba eliminar el alto y el ancho del archivo category.tlp: {if $subcategory.id_image} <img src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'subcategoria_default')|escape:'html'}" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" /> y dejarlo así: {if $subcategory.id_image} <img src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'subcategoria_default')|escape:'html'}" alt=""/> Te lo agradezco, te pasaste pa' buena onda! Saludos Edited September 5, 2013 by MOLTO (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts