rubensicko Posted January 5, 2010 Share Posted January 5, 2010 Hola a todos, Cuando entro en una categoria que tiene sub-categorias, al no tener foto sale encima de cada subcategoria la foto de 'imagen no disponible'. Como podria quitar todas las imagenes de subcategorias? Para que no me salga eso. Un saludo figuras! 1 Link to comment Share on other sites More sharing options...
rubensicko Posted January 8, 2010 Author Share Posted January 8, 2010 Cachis... ¿Nadie sabe?Quizá me expliqué mal...Un saludo! Link to comment Share on other sites More sharing options...
petete2008 Posted January 20, 2010 Share Posted January 20, 2010 te explicastes bien. Lo he estado buscando por el panel de administración y no he encontrado la opción.Creo que habrá que tocar código php para modificarlo. Link to comment Share on other sites More sharing options...
chakra Posted January 22, 2010 Share Posted January 22, 2010 Tienes que modificar el product.tpl y el product-list.tpl del theme que estés utilizando.Si no te aclarás, subelo aquí y miraremos de ayudarte.Un saludo. Link to comment Share on other sites More sharing options...
petete2008 Posted January 23, 2010 Share Posted January 23, 2010 Solución.Comentar o eliminar las siguientes líneas de codigo en el fichero category.tpl del theme que estes usando.Yo prefiero comentarlas porque nunca se sabe cuando vas a volver a necesitarlo de nuevo. <!-- Subcategories --> <!-- {l s='Subcategories'} {foreach from=$subcategories item=subcategory} getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}" title="{$subcategory.name|escape:'htmlall':'UTF-8'}"> {if $subcategory.id_image} getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'medium')}" alt="" /> {else} {/if} getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}">{$subcategory.name|escape:'htmlall':'UTF-8'} {/foreach} --> {/if} 1 Link to comment Share on other sites More sharing options...
Dimar Posted June 17, 2010 Share Posted June 17, 2010 Esa técnica me daba error, yo uso la version 1.2.5 y la linea a eliminar es: <!-- Subcategories {if isset($subcategories)} {l s='Subcategories'} {foreach from=$subcategories item=subcategory} getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}" title="{$subcategory.name|escape:'htmlall':'UTF-8'}"> {if $subcategory.id_image} getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'subcategorias')}" alt="" /> {else} {/if} getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}">{$subcategory.name|escape:'htmlall':'UTF-8'} {/foreach} {/if}--> De esta manera si me funciono, gracias!!. Como dice el amigo de arriba, es mejor colocarlo como comentario. Link to comment Share on other sites More sharing options...
miladoiro Posted November 6, 2011 Share Posted November 6, 2011 Hola soy nuevo en el foro y en prestashop intento quitar las imagenes en el 1.4.5.1 como comentais y no ocurre nada. que hago mal? salu2 Link to comment Share on other sites More sharing options...
miladoiro Posted November 10, 2011 Share Posted November 10, 2011 Eliminar las imagenes de las subcategorias Link to comment Share on other sites More sharing options...
miladoiro Posted November 20, 2011 Share Posted November 20, 2011 Eliminar las imagenes de las subcategorias SOLUCIONADO: Me lo soluciono yo mismo: en prestashop 1.4 en global.css linea 4 (mas o menos) en display:inline; cambiar a display: none; 1 Link to comment Share on other sites More sharing options...
wippa Posted December 16, 2011 Share Posted December 16, 2011 Comenta las lineas con {* código *} y no con // o <-- --> Recuerda que esto usa Smarty para los tpl. http://www.smarty.net/docsv2/es/language.basic.syntax.tpl Estoy con quien dijo que mejor comentar y no borrar, porque luego se te antoja que las necesitas, y si no sabemos ni comentar el código, no te cuento nada con crearlo de nuevo El archivo a editar como han comentado es en theme/category.tpl, linea 66 a 72. Recordad ir a tools/smarty/ y borrar todo menos el index para ver los cambios. Respecto a forzar la compilación, la única vez que he usado esa opción, se me fue media web a la mierda y sigo sin saber por qué 1 Link to comment Share on other sites More sharing options...
flipoxp Posted October 12, 2012 Share Posted October 12, 2012 Hola a todos para el ultimo prestashop el 1.5.1.0 es de la linea 81 a la 82 antes del {else} y perfecto resultado gracias por la ayuda.. 1 Link to comment Share on other sites More sharing options...
Rizasa Posted April 18, 2013 Share Posted April 18, 2013 flipoxp, podrías pegar las líneas de código que has comentado o eliminado? Gracias Link to comment Share on other sites More sharing options...
nadie Posted April 21, 2013 Share Posted April 21, 2013 flipoxp, podrías pegar las líneas de código que has comentado o eliminado? Gracias Para que no se muestren las imagenes de las subcategorias en Prestashop 1.5.4 en la plantilla por defecto En el fichero: /themes/default/category.tpl Busca esto: <a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}" title="{$subcategory.name|escape:'htmlall':'UTF-8'}" class="img"> {if $subcategory.id_image} <img src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'medium_default')}" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" /> {else} <img src="{$img_cat_dir}default-medium_default.jpg" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" /> {/if} </a> Y lo dejas asi: {* <a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}" title="{$subcategory.name|escape:'htmlall':'UTF-8'}" class="img"> {if $subcategory.id_image} <img src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'medium_default')}" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" /> {else} <img src="{$img_cat_dir}default-medium_default.jpg" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" /> {/if} </a> *} PD: Intenta siempre abrir un tema nuevo en el foro. 1 Link to comment Share on other sites More sharing options...
Recommended Posts