カスタムバーコードフィールド
デフォルトでは、WCPOSはSKUフィールドをバーコードとして使用します。

WCPOS Pro ユーザーは、WP Admin > POS > Settings > General でバーコードフィールドを選択することにより、任意の製品メタフィールドを使用できます。

カスタムバーコードメタフィールドは、woocommerce_pos_barcode_meta_key フィルターを使用することでも設定できます。
functions.php
/**
* Custom product meta field to use as barcode
*
* By default WCPOS will use the SKU field- '_sku'
* You can change the meta key using the following WordPress filter
*
* Below are meta fields from popular barcode plugins
* '_ywbc_barcode_value' - YITH WooCommerce Barcodes Premium
*/
function my_custom_pos_barcode_meta_key(){
return '_barcode'; // change for your custom meta key
}
add_filter('woocommerce_pos_barcode_meta_key', 'my_custom_pos_barcode_meta_key' );
危険
バーコードは各製品に対してユニークでなければなりません。