You need to control the $this->enabled in a shipping module to set when it will show or not show ...
In the Table Rates table shipping module you will see:
PHP Code:
// disable only when entire cart is free shipping
if (zen_get_shipping_enabled($this->code)) {
$this->enabled = ((MODULE_SHIPPING_TABLE_STATUS == 'True') ? true : false);
}
Now, you need to add a check on the weight ...
Add this below that IF statement:
PHP Code:
if (IS_ADMIN_FLAG == true || $_SESSION['cart']->show_weight() <= 10) {
$this->enabled = true;
} else {
$this->enabled = false;
}