Hi again, thought I should add more info..
So far I have added this around line 50ish
var $_services = array(
'EXPRESS' => 'Express',
'STANDARD' => 'Standard',
'AIR' => 'By Air',
'SEA' => 'By Sea',
'PPS5' => 'Pre-Paid Satchel 500gm',
'PPS2' => 'Pre-Piad Satchel 2k'
);
And around line 137ish modified this
var $_rates = array(
'PPS5' => '6.00',
'PPS3' => '10.30'
);
And, so far at around 375(this will need an if statement) I've got this, using the top 'chunk' as a template. (cuz I don't know what I'm doing)
// Express rate for Australian Shipping
$this->parcels[$key]['Service_Type'] = 'EXPRESS';
$rates = explode("\n", $this->_get_content($this->_prepare_url($this->parcels[$key])));
$this->parcels[$key]['Rates'][] = $this->_prepare_rate($rates, $this->parcels[$key]['Service_Type']);
// Pre-Paid Satchel Australian Shipping
$this->parcels[$key]['Service_Type'] = 'PPS5';
$rates = explode("\n", $this->_get_content($this->_prepare_url($this->parcels[$key])));
$this->parcels[$key]['Rates'][] = $this->_prepare_rate($rates, $this->parcels[$key]['Service_Type']);
I've tried using this for the second line in my 'chunk'
$rates = 'PPS5';
but it makes no difference. I also tried quite a few different things in there, tried changing the var $rates array, even tried to create a new array 'cost' and implement that. Most of those efforts just broke it.
Hope that info helps.
Thanks,
David