If you would like zero / no weight shipping but still collect customer's address, the change is very simple:

Add the following lines:
} else if($cart->show_weight() == 0) {
$free_shipping = true;

above this line (somewhere about 97):

} else {
$free_shipping = false;
}


More...