
Originally Posted by
mc12345678
Well, not having used the plugin, I'm not sure how that all plays into it. I don't see a specific forum on the program, but maybe either of the two that have worked on it could help if you reached out by PM. Perhaps with some more searching a thread or two would pop up about it, but beyond that I don't see what other way(s) to help on making the plugin functional for your store without going through the process of installation myself.
As to other options related to the issue at hand, either an additional plugin could be installed (numinix additional products fields for example) that would offer a toggle switch that could be used as a "big/small" item indicator and then you would want to clone one of the shipping modules that offer shipping by weight such that if no big items in the cart, then the small shipping module is active and the big is inactive, and vice versa perhaps...
Fairly simple it uses an observer:
PHP Code:
$zco_notifier->attach($this, array('NOTIFY_SHIPPING_MODULE_PRE_CALCULATE_BOXES_AND_TARE','NOTIFY_SHIPPING_MODULE_CALCULATE_BOXES_AND_TARE'));
then it takes the product's weight and adds the tare value for that group.
Example:
Group 1: has a tare weight of 1.5
Group 2: has a tare weight of 2
Widget: Weighs 2.2
Whatsit: Weights 1.8
So if you have:
2 Wigets and 3 Whatsits.
Detailed Math:
2(Wiget) + 3 (Whatsit)
2(1.5 + 2.2) + 3(2+1.8)
2(3.7) + 3(3.8)
7.4 + 11.4
the Weight would be: 18.8
then:
$shipping_weight = 18.8
Hopefully that makes it slightly more clear