Hide WooCommerce POS Product Images
<?php // this goes in your theme functions.php file function my_custom_pos_css() { echo '<style>.products-list .img { display: none; }</style>'; } add_action( 'woocommerce_pos_head', 'my_custom_pos_css' );