rafarrc Posted May 22, 2012 Share Posted May 22, 2012 (edited) Hola, Tengo un problema en algunos productos con como se muestran los productos relacionados. Esta categoria se ve mal: http://www.baratroni...t-300-inox.html Cuando debe ría verse como esta otra: http://www.baratroni...s-kp1000pk.html Aquí los productos relacionados tienen espacios entre ellos. A alguien se le ocurre algo? A nadie? xD Edited June 3, 2012 by rafarrc (see edit history) Link to comment Share on other sites More sharing options...
nadie Posted June 2, 2012 Share Posted June 2, 2012 Es por que es la versión noscript. Tienes que darle el valor width correcto en el productscategory.tpl Te dejo este código para que lo compares al tuyo. {if count($categoryProducts) > 0 && $categoryProducts !== false} <h2 class="productscategory_h2">{l s='other products in the same category:' mod='productscategory'} ({$categoryProducts|@count})</h2> <div id="{if count($categoryProducts) > 6}productscategory{else}productscategory_noscroll{/if}"> {if count($categoryProducts) > 6}<div id="productscategory_scroll_left_c"><a id="productscategory_scroll_left" title="{l s='Previous' mod='productscategory'}" href="javascript:{ldelim}{rdelim}">{l s='Previous' mod='productscategory'}</a></div>{/if} <div id="productscategory_list"> <ul {if count($categoryProducts) > 6}style="width: {math equation="width * nbImages" width=121 nbImages=$categoryProducts|@count}px"{/if}> {foreach from=$categoryProducts item='categoryProduct' name=categoryProduct} <li {if count($categoryProducts) < 7}style="width: {math equation="width / nbImages" width=95 nbImages=$categoryProducts|@count}%"{/if}> <a href="{$link->getProductLink($categoryProduct.id_product, $categoryProduct.link_rewrite, $categoryProduct.category, $categoryProduct.ean13)}" title="{$categoryProduct.name|htmlspecialchars}"><img src="{$link->getImageLink($categoryProduct.link_rewrite, $categoryProduct.id_image, 'medium')}" alt="{$categoryProduct.name|htmlspecialchars}" /></a><br/> <a href="{$link->getProductLink($categoryProduct.id_product, $categoryProduct.link_rewrite, $categoryProduct.category, $categoryProduct.ean13)}" title="{$categoryProduct.name|htmlspecialchars}"> {$categoryProduct.name|truncate:35:'...'|escape:'htmlall':'UTF-8'} </a><br /> {if $ProdDisplayPrice AND $categoryProduct.show_price == 1 AND !isset($restricted_country_mode) AND !$PS_CATALOG_MODE} <span class="price_display"> <a title="{l s='View' mod='productscategory'}" href="{$link->getProductLink($categoryProduct.id_product, $categoryProduct.link_rewrite, $categoryProduct.category, $categoryProduct.ean13)}" class="button_small">{l s='View' mod='productscategory'}</a> <span class="price">{convertPrice price=$categoryProduct.displayed_price}</span> </span><br /> {else} <br /> {/if} </li> {/foreach} </ul> </div> {if count($categoryProducts) > 6}<div id="productscategory_scroll_right_c"><a id="productscategory_scroll_right" title="{l s='Next' mod='productscategory'}" href="javascript:{ldelim}{rdelim}">{l s='Next' mod='productscategory'}</a></div>{/if} </div> <script type="text/javascript"> $('#productscategory_list').trigger('goto', [{$middlePosition}-3]); </script> {/if} Fijate en la linea donde dice: <li {if count($categoryProducts) < 7}style="width: {math equation="width / nbImages" width=95 nbImages=$categoryProducts|@count}%"{/if}> Saludos Por lo que veo funcionar ya le funciona. O quizás me haya confundido totalmente. Link to comment Share on other sites More sharing options...
nadie Posted June 2, 2012 Share Posted June 2, 2012 Por cierto te recomiendo bajar el truncate un poco: Dejarlo así: {$categoryProduct.name|truncate:13:'...'|escape:'htmlall':'UTF-8'} Algunos productos saltan un poco. Link to comment Share on other sites More sharing options...
rafarrc Posted June 3, 2012 Author Share Posted June 3, 2012 muchas gracias Link to comment Share on other sites More sharing options...
nadie Posted June 3, 2012 Share Posted June 3, 2012 muchas gracias Para la comunidad de prestashop es un placer ayudarte! Recuerda que entre toda la comunidad, estaremos por el foro, para guiarte por este mundo oscuro y tenebroso. Link to comment Share on other sites More sharing options...
Recommended Posts