jcarlosc Posted October 5, 2012 Share Posted October 5, 2012 (edited) Hola, tengo un error en la web en el módulo de productos de la misma categoría. Aparece un código que no sé como borrar, pueden ver el error por ejemplo aqui: http://bdebelleza.es...no-de-ojos.html Como ven aparece este código: style="width: 31.3333333333%" style="width: 31.3333333333%" style="width: 31.3333333333%" he usado el buscador y he probado esta solución, pero al poner este nuevo archivo no se me muestran las imágenes. http://www.prestasho...isma-categoria/ Un saludo. Edited October 5, 2012 by jcarlosc (see edit history) Link to comment Share on other sites More sharing options...
nadie Posted October 5, 2012 Share Posted October 5, 2012 Hola, tengo un error en la web en el módulo de productos de la misma categoría. Aparece un código que no sé como borrar, pueden ver el error por ejemplo aqui: http://bdebelleza.es...no-de-ojos.html Como ven aparece este código: style="width: 31.3333333333%" style="width: 31.3333333333%" style="width: 31.3333333333%" he usado el buscador y he probado esta solución, pero al poner este nuevo archivo no se me muestran las imágenes. http://www.prestasho...isma-categoria/ Un saludo. Sube el fichero: http://svn.prestashop.com/branches/1.5.x/modules/productscategory/productscategory.tpl Sustituyendolo por el tuyo. Y deja la url puesta de tu web, para que vea como se ve. Un Saludo, 1 Link to comment Share on other sites More sharing options...
jcarlosc Posted October 5, 2012 Author Share Posted October 5, 2012 Muchas gracias por responder. Ya he sustituido el archivo y ha desparecido el código, pero con el también las miniaturas. Te dejo aquí un ejemplo: http://bdebelleza.es/tienda/cremas/18-crema-contorno-de-ojos.html Un saludo. Link to comment Share on other sites More sharing options...
nadie Posted October 5, 2012 Share Posted October 5, 2012 Dejalo asi: {* * 2007-2012 PrestaShop * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to [email protected] so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to http://www.prestashop.com for more information. * * @author PrestaShop SA <[email protected]> * @copyright 2007-2012 PrestaShop SA * @version Release: $Revision: 8337 $ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA *} {if count($categoryProducts) > 0 && $categoryProducts !== false} <div class="clearfix blockproductscategory"> <h2 class="productscategory_h2">{$categoryProducts|@count} {l s='other products in the same category:' mod='productscategory'}</h2> <div id="{if count($categoryProducts) > 5}productscategory{else}productscategory_noscroll{/if}"> {if count($categoryProducts) > 5}<a id="productscategory_scroll_left" title="{l s='Previous' mod='productscategory'}" href="javascript:{ldelim}{rdelim}">{l s='Previous' mod='productscategory'}</a>{/if} <div id="productscategory_list"> <ul {if count($categoryProducts) > 5}style="width: {math equation="width * nbImages" width=107 nbImages=$categoryProducts|@count}px"{/if}> {foreach from=$categoryProducts item='categoryProduct' name=categoryProduct} <li {if count($categoryProducts) < 6}style="width:60px"{/if}> <a href="{$link->getProductLink($categoryProduct.id_product, $categoryProduct.link_rewrite, $categoryProduct.category, $categoryProduct.ean13)}" class="lnk_img" title="{$categoryProduct.name|htmlspecialchars}"><img src="{$link->getImageLink($categoryProduct.link_rewrite, $categoryProduct.id_image, 'medium')}" alt="{$categoryProduct.name|htmlspecialchars}" /></a> <p class="product_name"> <a href="{$link->getProductLink($categoryProduct.id_product, $categoryProduct.link_rewrite, $categoryProduct.category, $categoryProduct.ean13)}" title="{$categoryProduct.name|htmlspecialchars}">{$categoryProduct.name|truncate:14:'...'|escape:'htmlall':'UTF-8'}</a> </p> {if $ProdDisplayPrice AND $categoryProduct.show_price == 1 AND !isset($restricted_country_mode) AND !$PS_CATALOG_MODE} <p class="price_display"> <span class="price">{convertPrice price=$categoryProduct.displayed_price}</span> </p> {else} <br /> {/if} </li> {/foreach} </ul> </div> {if count($categoryProducts) > 5}<a id="productscategory_scroll_right" title="{l s='Next' mod='productscategory'}" href="javascript:{ldelim}{rdelim}">{l s='Next' mod='productscategory'}</a>{/if} </div> <script type="text/javascript"> $('#productscategory_list').trigger('goto', [{$middlePosition}-3]); </script> </div> {/if} (Aunque no lo notes hay una diferencia) 2 Link to comment Share on other sites More sharing options...
jcarlosc Posted October 5, 2012 Author Share Posted October 5, 2012 Funcionó! Muchisimas gracias! Además ahora no aparece la descripción del producto que era algo que también quería quitar jeje aunque se queda el nombre del producto algo pequeño... Link to comment Share on other sites More sharing options...
nadie Posted October 5, 2012 Share Posted October 5, 2012 Para que se vea un poco mas de nombre, busca esto: {$categoryProduct.name|truncate:14:'...'|escape:'htmlall':'UTF-8'} Y dejalo asi: {$categoryProduct.name|truncate:25:'...'|escape:'htmlall':'UTF-8'} Aunque creo que se va a descaudrar pruebalo ) 2 Link to comment Share on other sites More sharing options...
jcarlosc Posted October 5, 2012 Author Share Posted October 5, 2012 Muchisimas gracias, ha quedado perfecto, al final le he puesto en vez de 25, 30 y no se ha descuadrado. Está genial, muchas gracias de nuevo Link to comment Share on other sites More sharing options...
nadie Posted October 5, 2012 Share Posted October 5, 2012 Muchisimas gracias, ha quedado perfecto, al final le he puesto en vez de 25, 30 y no se ha descuadrado. Está genial, muchas gracias de nuevo Un placer ayudarte y servirte! 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...
warrior-style Posted November 20, 2012 Share Posted November 20, 2012 Buenos dias, tengo el mismo problema he hecho lo que dicen en el post pero me sigue saliendo style="width: 23.5%" les dejo para pagina para poder analizar productscategory.tpl http://www.gruporepublic.com/warriorstyleshop/bolsas-y-mochilas/1436-bolsa-ws-deporte-basic.html Link to comment Share on other sites More sharing options...
ideas4design Posted November 21, 2012 Share Posted November 21, 2012 Yo tenía ese problema pero...me salen productos que no son de esa categoria. Es decir veo un zapato y abajo en "Productos de la misma categoría" salen pues bolsos y abrigos por ejemplo. A qué se debe esto? Link to comment Share on other sites More sharing options...
Recommended Posts