getProductId(), $specialTaxableProducts) && $address->getRegionCode() == 'PA') { $taxCode = ''; // Fully taxable } // Taxable in multiple states, exempt in other exempt states $specialTaxableProducts = array(1001, 1002, 1003, 1004); // Product IDs $specialTaxableStates = array('MN', 'PA'); // Tax these Clothing products if shipped to MN or PA if (in_array($item->getProductId(), $specialTaxableProducts) && in_array($address->getRegionCode(), $specialTaxableStates)) { $taxCode = ''; // Fully taxable }