|
Hi John,
I have no idea how to differentiate between printed papers and parcels, but to stop all airmail at 2kg you need to edit code/community/meanbee/royalmail/shipping/carrier/royalmail/airmail.php
Find line 212 and replace
while($weight > 1000) {
with
while($weight <=2000 && $weight > 1000) {
I haven’t tested this yet but it should work.
We are going to leave it as it is for now though as there are other options, such as parcelforce international that do ship over 2kg (I’m not sure how the price matches up yet though)
|