Set your Maximum weight to 50 ...
Set the Tare for Small to Medium and Large to 0:0 unless you plan to add more weight to the order ...
What settings are you using on the Zone Rate zones shipping module?
On the Free Shipping over £15 but not when weight is over XX.XX ... can this be defined using the Free Shipping Options freeoptions where you set:
Total >= 15.00
Weight <= XX.XX
and edit the Free Shipping Options freeoptions shipping file:
/includes/modules/shipping/freeoptions.php
and change the OR to AND on these conditions:
Code:
// final check for display of Free Options
if ($this->ck_freeoptions_total or $this->ck_freeoptions_weight or $this->ck_freeoptions_items) {
$this->enabled = true;
} else {
$this->enabled = false;
}
Code:
// final check for display of Free Options
if ($this->ck_freeoptions_total and $this->ck_freeoptions_weight and $this->ck_freeoptions_items) {
$this->enabled = true;
} else {
$this->enabled = false;
}