From 712c281fb75632201c0d15ee6840aa71c4005155 Mon Sep 17 00:00:00 2001 From: Mike Jolley Date: Mon, 19 Jun 2017 14:01:52 +0100 Subject: [PATCH] Add tax class and status to export Fixes #15663 --- includes/export/class-wc-product-csv-exporter.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/export/class-wc-product-csv-exporter.php b/includes/export/class-wc-product-csv-exporter.php index fe1bde933e9..010de911b12 100644 --- a/includes/export/class-wc-product-csv-exporter.php +++ b/includes/export/class-wc-product-csv-exporter.php @@ -88,7 +88,8 @@ class WC_Product_CSV_Exporter extends WC_CSV_Batch_Exporter { 'description' => __( 'Description', 'woocommerce' ), 'date_on_sale_from' => __( 'Date sale price starts', 'woocommerce' ), 'date_on_sale_to' => __( 'Date sale price ends', 'woocommerce' ), - 'tax_status' => __( 'Tax class', 'woocommerce' ), + 'tax_status' => __( 'Tax status', 'woocommerce' ), + 'tax_class' => __( 'Tax class', 'woocommerce' ), 'stock_status' => __( 'In stock?', 'woocommerce' ), 'stock' => __( 'Stock', 'woocommerce' ), 'backorders' => __( 'Backorders allowed?', 'woocommerce' ),