Jump to content

Pestaña más prestashop 1.5 (SOLUCIONADO)


Recommended Posts

Muy buenas, tengo una consulta y me gustaría saber si me alguien tiene idea de como resolverla.

 

Me gustaría que la pestaña más, de los productos apareciera justo al lado de precios decrecientes y no debajo. He probado a moverlo desde Live Edit pero no encuentro estas.

 

También me vale quitar lo de precios decrecientes, que tampoco se como hacerlo.

 

Dejo una imagen para que sepais de que hablo.

post-393549-0-67022500-1358879787_thumb.jpg

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

A que editar ese modulo, ¿De donde lo has bajado?

 

No lo he descargado biene por defecto. Aparece cuando añades precios decrecientes a los productos, es decir cuando reduces el precio cuanta más cantidad se compre

Link to comment
Share on other sites

Paso 0:

 

En el fichero:

 

/themes/default/product.tpl

 

Busca esto:

 

{if (isset($quantity_discounts) && count($quantity_discounts) > 0)}
<!-- quantity discount -->
<ul class="idTabs clearfix">
<li><a href="#discount" style="cursor: pointer" class="selected">{l s='Quantity discount'}</a></li>
</ul>
<div id="quantityDiscount">
<table class="std">
	<thead>
		<tr>
			<th>{l s='product'}</th>
			<th>{l s='from (qty)'}</th>
			<th>{l s='discount'}</th>
		</tr>
	</thead>
 <tbody>
		{foreach from=$quantity_discounts item='quantity_discount' name='quantity_discounts'}
		<tr id="quantityDiscount_{$quantity_discount.id_product_attribute}">
			<td>
				{if (isset($quantity_discount.attributes) && ($quantity_discount.attributes))}
					{$product->getProductName($quantity_discount.id_product, $quantity_discount.id_product_attribute)}
				{else}
					{$product->getProductName($quantity_discount.id_product)}
				{/if}
			</td>
			<td>{$quantity_discount.quantity|intval}</td>
			<td>
				{if $quantity_discount.price >= 0 OR $quantity_discount.reduction_type == 'amount'}
				   -{convertPrice price=$quantity_discount.real_value|floatval}
			   {else}
				   -{$quantity_discount.real_value|floatval}%
			   {/if}
			</td>
		</tr>
		{/foreach}
	</tbody>
</table>
</div>
{/if}

 

 

Y quitalo de hay. (Vamos borralo)

  • Like 1
Link to comment
Share on other sites

Paso 1.

 

Fichero:

 

/themes/default/product.tpl

 

Busca esto:

 

 {if $product->description}<li><a id="more_info_tab_more_info" href="#idTab1">{l s='More info'}</a></li>{/if}

 

Y debajo añade:

 

 {if (isset($quantity_discounts) && count($quantity_discounts) > 0)}<li><a href="#quantityDiscount">{l s='Quantity discount'}</a></li>{/if}

  • Like 1
Link to comment
Share on other sites

Paso 2

 

Fichero:

 

/themes/default/product.tpl

 

Busca esto:

 

{if isset($product) && $product->description}
 <!-- full description -->
 <div id="idTab1" class="rte">{$product->description}</div>
{/if}

 

Y debajo añade:

 

{if (isset($quantity_discounts) && count($quantity_discounts) > 0)}
<div id="quantityDiscount" class="rte">
<table class="std">
    <thead>
	    <tr>
		    <th>{l s='product'}</th>
		    <th>{l s='from (qty)'}</th>
		    <th>{l s='discount'}</th>
	    </tr>
    </thead>
 <tbody>
	    {foreach from=$quantity_discounts item='quantity_discount' name='quantity_discounts'}
	    <tr id="quantityDiscount_{$quantity_discount.id_product_attribute}">
		    <td>
			    {if (isset($quantity_discount.attributes) && ($quantity_discount.attributes))}
				    {$product->getProductName($quantity_discount.id_product, $quantity_discount.id_product_attribute)}
			    {else}
				    {$product->getProductName($quantity_discount.id_product)}
			    {/if}
		    </td>
		    <td>{$quantity_discount.quantity|intval}</td>
		    <td>
			    {if $quantity_discount.price >= 0 OR $quantity_discount.reduction_type == 'amount'}
				   -{convertPrice price=$quantity_discount.real_value|floatval}
			   {else}
				   -{$quantity_discount.real_value|floatval}%
			   {/if}
		    </td>
	    </tr>
	    {/foreach}
    </tbody>
</table>
</div>
{/if}

 

Guarda los cambios y fuerza compilación.

  • Like 1
Link to comment
Share on other sites

Ok, todo perfecto. Muchisimas gracias

 

Un placer ayudarte y servirte!

 

Si das el tema como solucionado, edita el titulo del tema, editando el primer mensaje del tema y 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

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