Include global_unique_id in product import mapper (#52240)
* Add global_unique_id to importer controller * Add changelog for gtin import mapper * Add changefile(s) from automation for the following project(s): woocommerce --------- Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
parent
56a2bf508c
commit
953388ef4c
|
@ -0,0 +1,4 @@
|
|||
Significance: patch
|
||||
Type: fix
|
||||
|
||||
Adds the missing global_unique_id field to the product import mapper
|
|
@ -0,0 +1,4 @@
|
|||
Significance: patch
|
||||
Type: fix
|
||||
|
||||
Adds the missing global_unique_id field to the product import mapper
|
|
@ -808,6 +808,7 @@ class WC_Product_CSV_Importer_Controller {
|
|||
'id' => __( 'ID', 'woocommerce' ),
|
||||
'type' => __( 'Type', 'woocommerce' ),
|
||||
'sku' => __( 'SKU', 'woocommerce' ),
|
||||
'global_unique_id' => __( 'GTIN, UPC, EAN, or ISBN', 'woocommerce' ),
|
||||
'name' => __( 'Name', 'woocommerce' ),
|
||||
'published' => __( 'Published', 'woocommerce' ),
|
||||
'featured' => __( 'Is featured?', 'woocommerce' ),
|
||||
|
|
Loading…
Reference in New Issue