Thank you for updating this module.
I'm testing upgrade on my development install (WAMP) and found issue with the Lettermail Shipping.
On my production site lettermail rates only show if package is under max lettermail weight and it fits into one of the lettermail envelopes setup in my sellonline profile (height is set at 1.8cm).
In my development environment lettermail rates are showing if package is under max lettermail weight but over height to fit into lettermail envelope.
I made change in includes/modules/shipping/canadapost.php to fix
change this
Code:
154 $canadapostQuote = $this->_canadapostGetQuote();
155
156 // Twitch bugfix - add lettermail switch control
157 // orginal code if ($this->lettermail_available && ($shipping_weight <= $this->lettermail_max_weight))
158 if (MODULE_SHIPPING_CANADAPOST_LETTERMAIL_STATUS == 'True' && ($shipping_weight <= $this->lettermail_max_weight))
to this
Code:
154 $canadapostQuote = $this->_canadapostGetQuote();
155
156 // Twitch bugfix - add lettermail switch control
157 // orginal code if ($this->lettermail_available && ($shipping_weight <= $this->lettermail_max_weight))
158 if (MODULE_SHIPPING_CANADAPOST_LETTERMAIL_STATUS == 'True' && lettermail_available)