views:

251

answers:

2

How can I set the shipping cost for Magento for all baskets that are below a certain point. Eg all baskets under £5 have fixed shipping of £1.99.

Thanks.

A: 

I think this is what you are looking for, unless I have the wrong thing. It seems to be called Table Rate Shipping.

Mimisbrunnr
how do i then use a different system over £5?
Josh
A: 

the only way i've managed to get it working is to add an extra case statement in my shipping module.

$result = Mage::getModel('shipping/rate_result');

...
} else if ($request->getPackageValue() < 6) {
    $price = '1.99';
...
Josh