kilbot
5/29/2017 - 4:07 AM

Hide WooCommerce POS Product Images

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' );