supersnow,
Can you try this update to see it this takes care of your problems:
in functions_local_taxes.php
change line 25 from
Code:
	if ($customer_check->fields['customers_tax_exempt'] = "ALL") {
to
Code:
if (strtoupper($customer_check->fields['customers_tax_exempt']) == "ALL") {
LadyHLG