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:
Ally 2024-10-28 09:54:10 +00:00 committed by GitHub
parent 56a2bf508c
commit 953388ef4c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,4 @@
Significance: patch
Type: fix
Adds the missing global_unique_id field to the product import mapper

View File

@ -0,0 +1,4 @@
Significance: patch
Type: fix
Adds the missing global_unique_id field to the product import mapper

View File

@ -808,6 +808,7 @@ class WC_Product_CSV_Importer_Controller {
'id' => __( 'ID', 'woocommerce' ), 'id' => __( 'ID', 'woocommerce' ),
'type' => __( 'Type', 'woocommerce' ), 'type' => __( 'Type', 'woocommerce' ),
'sku' => __( 'SKU', 'woocommerce' ), 'sku' => __( 'SKU', 'woocommerce' ),
'global_unique_id' => __( 'GTIN, UPC, EAN, or ISBN', 'woocommerce' ),
'name' => __( 'Name', 'woocommerce' ), 'name' => __( 'Name', 'woocommerce' ),
'published' => __( 'Published', 'woocommerce' ), 'published' => __( 'Published', 'woocommerce' ),
'featured' => __( 'Is featured?', 'woocommerce' ), 'featured' => __( 'Is featured?', 'woocommerce' ),