Hello,
note that if you want to edit the AuPost limitation, you'll have to edit the following code of the file "aupost.php" :
$limit = array();
if(@$order->shipping_address_full->shipping_address->address_country->zone_code_2 == 'AU'){
$limit['w'] = 22000;
$limit['volume'] = 250000000;
$limit['x'] = 1050;
}else{
$limit['w'] = 20000;
$limit['girth'] = 1400;
$limit['x'] = 1050;
}
Still when you combine 2 items that exceed the 22kg it wont show the Aust Post shipping
That's only because multiple items can be split into multiple packages, but not ONE item. In your case, the only solution will be do directly change the weight limitation through the AuPost code, or to ignore the weight limitation by editing the lines (their is 2 getOrderPackage call) :
$packages = $this->getOrderPackage($order, array('weight_unit' => 'g', 'volume_unit' => 'mm', 'limit' => $limit, 'required_dimensions' => array('w','x','y','z')));
By :
$packages = $this->getOrderPackage($order, array('weight_unit' => 'g', 'volume_unit' => 'mm', 'limit' => $limit, 'required_dimensions' => array('x','y','z')));
and also by removing the
and
lines.