Hide Fee and Shipping Button from WooCommerce POS
<?php
// this goes in your theme functions.php file
function my_custom_pos_css() {
echo '<style>[data-action="fee"], [data-action="shipping"] { display: none; }</style>';
}
add_action( 'woocommerce_pos_head', 'my_custom_pos_css' );