php - Magento shipping discount on additional products -
i'm trying add rule add fixed shipping cost first product in cart , half shipping cost each additional product.
for example:
- producta price = 10€
- productb price = 15€
- shipping cost each product = 5€
if shopping cart contains, total price be:
- producta --> 10€ + 5€ (product price + shipping cost)
- 2 x producta --> 10€ + 10€ + 5€ + 2.5€ (product prices + shipping costs)
- producta + productb --> 10€+15€ + 5€+2.5€ (product prices + shipping costs)
and on...
you cannot out of box implement shipping fee scheme.
you can approximate using flat rate method in combination handling fee.
- handling fee: 5.0
- per item: 2.5
in system > configuration > sales > shipping methods
can enable flat rate method. (see config in attached screenshot)
this naturally mean first product 7.5 not wanted after you'll have correct prices.
Comments
Post a Comment