If the total price of product attributes is higher than zero, only one shipping method should be available.
I have 2 flat rates and I've tried to exclude one by adding in includes/modules/shipping/flat.php:
if ($cart->calculate_price[$attribute_price]['total'] < 4.99){
$this->enabled = true;
}else{
$this->enabled = false;
}
This isn't working...
Does anyone know how to effectively go about this?






Find content
Female

