Remove all taxes from WooCommerce POS
<?php // theme functions.php file function my_custom_wcpos_tax_enabled( $enabled ) { return is_pos() ? false : $enabled; } add_filter( 'wc_tax_enabled', 'my_custom_wcpos_tax_enabled' );