CMACHA Posted July 16, 2013 Share Posted July 16, 2013 Hola a todos, Tengo problemas para eliminar el campo de "resumen de productos" de categoría, en donde dice "Hay 6 productos". Lo veo innecesario y además esta dejando mucho espacio en blanco. Si es posible acomodarlo y bajarlo a la altura de "ordenar por" sería genial. Todo lo que indico esta el link. Mi página es: http://redandina.pe/...te-y-accesorios Adjunto imagen: Agradeceré mucho su apoyo. Sin título-1.pdf Link to comment Share on other sites More sharing options...
nadie Posted July 16, 2013 Share Posted July 16, 2013 Si quieres, eliminarlo, ve al fichero: /themes/tu-plantilla/category-count.tpl Busca esto: {if $category->id == 1 OR $nb_products == 0} {l s='There are no products in this category'} {else} {if $nb_products == 1} {l s='There is %d product.' sprintf=$nb_products} {else} {l s='There are %d products.' sprintf=$nb_products} {/if} {/if} Y dejalo asi: {if $category->id == 1 OR $nb_products == 0} {l s='There are no products in this category'} {else} {if $nb_products == 1} <!-- {l s='There is %d product.' sprintf=$nb_products} --> {else} <!-- {l s='There are %d products.' sprintf=$nb_products} --> {/if} {/if} (No utilizamos {* *} para comentar en este caso y utilizamos un simple <!-- -->, por que sino cortamos la ejecución del if en ese momento) Link to comment Share on other sites More sharing options...
nadie Posted July 16, 2013 Share Posted July 16, 2013 Si quieres, eliminarlo, ve al fichero: /themes/tu-plantilla/category-count.tpl Busca esto: {if $category->id == 1 OR $nb_products == 0} {l s='There are no products in this category'} {else} {if $nb_products == 1} {l s='There is %d product.' sprintf=$nb_products} {else} {l s='There are %d products.' sprintf=$nb_products} {/if} {/if} Y dejalo asi: {if $category->id == 1 OR $nb_products == 0} {l s='There are no products in this category'} {else} {if $nb_products == 1} <!-- {l s='There is %d product.' sprintf=$nb_products} --> {else} <!-- {l s='There are %d products.' sprintf=$nb_products} --> {/if} {/if} (No utilizamos {* *} para comentar en este caso y utilizamos un simple <!-- -->, por que sino cortamos la ejecución del if en ese momento) Si quieres comentarlo todo, dejalo asi: {* {if $category->id == 1 OR $nb_products == 0} {l s='There are no products in this category'} {else} {if $nb_products == 1} {l s='There is %d product.' sprintf=$nb_products} {else} {l s='There are %d products.' sprintf=$nb_products} {/if} {/if} *} o en el fichero: /themes/tu-plantilla/category.tpl Busca esto: <div class="resumecat category-product-count"> {include file="$tpl_dir./category-count.tpl"} </div> Y dejalo asi: {* <div class="resumecat category-product-count"> {include file="$tpl_dir./category-count.tpl"} </div> *} Link to comment Share on other sites More sharing options...
CMACHA Posted July 16, 2013 Author Share Posted July 16, 2013 Solucionado, gracias. Eres un genio... Link to comment Share on other sites More sharing options...
nadie Posted July 16, 2013 Share Posted July 16, 2013 Solucionado, gracias. Eres un genio... Un placer ayudarte y servirte! Si das el tema como solucionado, edita el titulo del tema, editando el primer mensaje, pulsando en editar, y después en "Usar editor completo", añadiendo la palabra "Solucionado" al titulo, esto ayudara, a mantener una mayor organización en el foro. Un saludo y recuerda que estaremos en el foro, para guiarte por este mundo oscuro y tenebroso. Link to comment Share on other sites More sharing options...
Recommended Posts