Jump to content

[Solucionado] Problema con las vistas de productos relacionados


rafarrc

Recommended Posts

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 by rafarrc (see edit history)
Link to comment
Share on other sites

  • 2 weeks later...

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

Guest
This topic is now closed to further replies.
×
×
  • Create New...