Okay, this is probably my last post.
I've tweaked includes\modules\shipping\canadapost.php to hide the boxes. Lines 184 and 185 are setting the shipping method title that gets used on both the shipping estimates popup and the shipping method step of the checkout:
Code:
$this->quotes = array('id' => $this->code,
'module' => $this->title . ' (' . $this->boxCount . MODULE_SHIPPING_PACKAGING_RESULTS . ')');
I changed them to the following:
Code:
$this->quotes = array('id' => $this->code,
'module' => $this->title);
// 'module' => $this->title . ' (' . $this->boxCount . MODULE_SHIPPING_PACKAGING_RESULTS . ')');
In addition to the above, I added some carefully calculated small packet boxes to SellOnline to ensure my customers could take advantage of those lower rates when applicable. Here are some samples:
30x15x15 - about the size of a roll of paper towel
26x16x16
22x17x17
18x18x18 - would fit a Nintendo Game Cube
27x27x9 - a couple of dinner plates
26x26x12
25x25x15
24x24x18
23x23x21 - would easily fit a Power Mac G4 Cube
Sandy