Jump to content

[Solucionado]Descuadre en modulo Productos Misma Categoria


Recommended Posts

Buenas noches nos hemos dado cuenta que cuando hay pocos productos de la misma categoria el modulo sale con los productos descuadrados(Adjuntamos captura) sin embargo cuando hay muchos sale perfecto (adjuntamos captura) Queriamos saber si se podria ajustar para cuando hay pocos productos.

Prestashop 1.4.10

Modulo Categoría de productos v1.3.1

 

Adjuntamos tambien archivo css para que podias indagar...nosotros estamos pegados en css :D

post-368162-0-52259400-1382398419_thumb.png

post-368162-0-89434400-1382398420_thumb.png

Edited by JavierP (see edit history)
Link to comment
Share on other sites

Contenido Productscategory.tpl del tema en modules.

{if count($categoryProducts) > 0}
	<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: {math equation="width / nbImages" width=94 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:15:'...'|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">
						<span class="price">{convertPrice price=$categoryProduct.displayed_price}</span>
					</span><br />
				{else}
					<br />
				{/if}
				<a title="{l s='View' mod='productscategory'}" href="{$link->getProductLink($categoryProduct.id_product, $categoryProduct.link_rewrite, $categoryProduct.category, $categoryProduct.ean13)}" class="front_see cfloat width96 button_small">{l s='View' mod='productscategory'}</a><br />
			</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>
    <br class="clear" />
    <br />
	<script type="text/javascript">
		$('#productscategory_list').trigger('goto', [{$middlePosition}-3]);
	</script>
{/if}

 

Link to comment
Share on other sites

Por ejemplo, intenta cambiar esto:

			<li {if count($categoryProducts) < 6}style="width: {math equation="width / nbImages" width=94 nbImages=$categoryProducts|@count}%"{/if}>

por

                        <li {if count($categoryProducts) < 6}style="width:15%"{/if}>

Link to comment
Share on other sites

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