Jump to content

[SOLVED] Quantity discount information


Recommended Posts

You can go to the "6. Discounts" tab of the product editor and remove the quantity discounts from there, or if you want to keep them, but just not display them, edit product.tpl in your theme's directory and {* comment out *} lines 294-325:

>
{if $quantity_discounts}
<!-- quantity discount -->
</pre>
<ul>
{l s='Quantity discount'}
</ul>
<br><div>
{$quantity_discount.quantity|intval} 
               {if $quantity_discount.quantity|intval > 1}
                   {l s='quantities'}
               {else}
                   {l s='quantity'}
               {/if}

               {if $quantity_discount.id_discount_type|intval == 1}
                   -{$quantity_discount.value|floatval}%
               {else}
                   -{convertPrice price=$quantity_discount.real_value|floatval}
               {/if}

</div>
<br>{/if

Link to comment
Share on other sites

×
×
  • Create New...