Quote Originally Posted by Ajeh View Post
What shipping module are you using for:
Register Mail Shipping

What is the name of the shipping file?

Where did you get this shipping module?

Do you have code changes in this file?
Module is multiple_shipping_zone_module_1.0,0 or you can say it is clone of zone shipping and file name is zone.php..

so far i have added below code only...and it is working perfectly fine,,


// bof: turn off for weight over 2
if (!IS_ADMIN_FLAG) {
global $cart;
if ($_SESSION['cart']->show_weight() > 2) {
$this->enabled = false;
}
}
// eof: turn off for weight over 2