Jump to content

Quantity discount sort order


tobbecokta

Recommended Posts

Hi,

 

I run Prestashop 1.5. When Quantity discounts are shown, they do not shown in logical order.

 

I would like to arrange them in this order:

 

 

first 1 unit then

2 units then

3 units then

4 units then

5 units

 

 

Instead of in the order i added them, which is the case now. Can anoyone help?

 

 

Br,

Tobias

Link to comment
Share on other sites

  • 2 weeks later...
  • 2 weeks later...
  • 1 month later...

A bit late, but I just found an easy solution:

 

Open "product.tpl" from your theme and replace the line

{foreach from=$quantity_discounts item='quantity_discount' name='quantity_discounts'}

with

{foreach from=$quantity_discounts|@array_reverse item='quantity_discount' name='quantity_discounts'}

 

Another solution would be to modify a class (SpecificPrice.php I think) but the above solution is much safer IMHO.

Edited by Big_Berny (see edit history)
  • Like 8
Link to comment
Share on other sites

  • 1 month later...
  • 6 months later...
  • 5 months later...
  • 1 year later...
  • 1 year later...

NICE!  but now i have 1pz. 5pz. 25.pz

could i have a reverse order? from bigger quantity to smaller?

i'd like

50 pz.

25 pz.

5 pz.

 

 

|SOLVED|

i'm using the QUANTITYDISCOUNTS Free Module (a nice module to show discounts in your cart before the base price)

So i have not to modify product.tpl but quantitydiscounts.tpl

 

search this

{foreach from=$qd_quantity_discounts item='qd_quantity_discount' name='quantity_discounts'}

and just add |@array_reverse after FROM command

{foreach from=$qd_quantity_discounts|@array_reverse item='qd_quantity_discount' name='quantity_discounts'}

Same as Big_Berny said.

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...