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.
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.
I think this is what you are looking for, unless I have the wrong thing. It seems to be called Table Rate Shipping.
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';
...