Quote Originally Posted by jazzah View Post
The problem with that is it then adds a day to everything,
<snip>
So we need to increase it only for fastway!
Assuming you are using a current version (v2.0.5 or V2.0.6) and don't mind modifying code. locate the file /includes/modules/shipiing/ozpost.php

Then using a text editor, locate the following lines:

Code:
case  "FWL";
                if(in_array("FastWay Labels", $this->allowed_methods)) $handlingFee = MODULE_SHIPPING_OZPOST_FWL_HANDLING ;
            break;

   case "FWS":
                if(in_array("FastWay Satchel", $this->allowed_methods))  $handlingFee = MODULE_SHIPPING_OZPOST_FWS_HANDLING ;
            break;
The modify or replace them with:

Code:
case  "FWL";
                if(in_array("FastWay Labels", $this->allowed_methods))  { 
                $handlingFee = MODULE_SHIPPING_OZPOST_FWL_HANDLING ;
                $quote->days = $quote->days + 1 ;
                }
            break;

   case "FWS":
                if(in_array("FastWay Satchel", $this->allowed_methods)) { 
                $handlingFee = MODULE_SHIPPING_OZPOST_FWS_HANDLING ;
                $quote->days = $quote->days + 1 ;
                }
            break;
Don't forget to make a backup of the file first, so if it goes wrong you won't find yourself stuck... just revert to the backup.

Cheers
Rod