我的客户根据订单中的商品数量要求运费。
1-10 本书 - $4 11-24 - $5.50 25-49 - $7 50-99- $8.50 100-199 - $11 200-299 - $16 300-399 - $23 400-499 - $30
我一周以来一直在尝试调整 JavaScript。任何人都足够了解 Simplecart,可以将我送到正确的方向吗?
我的客户根据订单中的商品数量要求运费。
1-10 本书 - $4 11-24 - $5.50 25-49 - $7 50-99- $8.50 100-199 - $11 200-299 - $16 300-399 - $23 400-499 - $30
我一周以来一直在尝试调整 JavaScript。任何人都足够了解 Simplecart,可以将我送到正确的方向吗?
您不必更改核心文件。
请参阅http://simplecartjs.org/documentation/shipping
simpleCart.shipping(function(){
if( simpleCart.quantity() <= 10 ){
return 4;
}
else if( simpleCart.quantity() < 25 ){
return 5.5;
}
else if( simpleCart.quantity() < 50 ){
return 7.5;
}
else if( simpleCart.quantity() < 100 ){
return 8.5;
}
else if( simpleCart.quantity() < 200 ){
return 11;
}
else if( simpleCart.quantity() < 300 ){
return 16;
}
else if( simpleCart.quantity() < 400 ){
return 23;
}
else if( simpleCart.quantity() < 500 ){
return 30;
}
else {
return 30; // amount for > 500
}
});
simpleCart({
shippingCustom: function () {
if (simpleCart.quantity() > 50) {
return 0;
} else if (simpleCart.quantity() > 20) {
return 10;
} else {
return 20;
}
}
});