Jump to content

help how do you modify the quantity discount so it let you leave discount 00


Recommended Posts

help how do you modify the quantity discount so it let you leave discount 00 amount and starting at on so it but the normal price in you quanity discount as i modify mine to show wholesale bulk order pricing

  • Workwear Bulk Order Pricing
  • 20 + 10 + 5 +

£5.51 Each £6.21 Each 6.99each

but really want to but 1+ 7.95 each please help

here a link to my site so you can see what im trying to do http://www.custom-fu...i-vis-vest.html

post-372503-0-56478800-1346234700_thumb.jpg

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

Ok, this is one of the many area's that I am weak at. And I have not done this or tested it.

 

Try this. Add a new price or apply a discount starting at your unit level. For example you could try 5 units with lower price than say one unit or 5 units with a discount in currency or percentage.

 

See how that works for you and let us know.

 

back office-->product-->edit your product

 

08.29.2012-21.28.42.png

http://screencast.com/t/NhxGJNCimvX5

Link to comment
Share on other sites

The code is in classes/SpecificPrice.php

 

I modified the code and can get the 1 quantity to display, but not the correct price.

 

function getQuantityDiscounts

code..

 foreach ($res as $specific_price)
 {
  if (!isset($last_quantity))
 $last_quantity = $specific_price['from_quantity'];
  else if ($last_quantity == $specific_price['from_quantity'])
break;
  $last_quantity = $specific_price['from_quantity'];
-->  if ($specific_price['from_quantity'] > 1)
$targeted_prices[] = $specific_price;
 }

 

If I comment out the --> code, then it will display on the product 1 quantity but under that the price is 0.00 (should be 66.00.

 

It's late for me...I travel tomorrow 6,000 KM's, so I may not get back to this until Sunday or Monday...

Link to comment
Share on other sites

×
×
  • Create New...