Common questions about the WooCommerce Customer/Order/Coupon CSV Export plugin
Below you can find information about common cases and issues, as well as how to better utilize the WooCommerce Customer/Order/Coupon Export plugin.
Select a question to see its answer:
- Can refunds be exported?
- Are customer VAT numbers available in order exports?
- Why are there users missing from my customers export?
- Can columns be duplicated in a custom export format?
- Can the Export Status column be removed from the Orders or Users pages?
- Can I export serialized data?
- Why are there no leading zeros in my Excel export?
- How can I make foreign and special characters display properly in Excel?
- Why is all my data appearing in a single column in Excel?
- Can Product Add-Ons in the XML file be separated to be found easier?
- How can I change the character encoding or XML version?
Answers to common questions
Can refunds be exported?
Yes, the extension is compatible with refunds and will use a predefined or custom format depending on whether the following fields are added:
refunded_total
: The amount of the refund.Item_refunded
: The amount a specific item in the order has been refunded.
Are customer VAT numbers available in order exports?
It's not possible by default, however, using the WooCommerce Taxamo or EU Vat Number extensions will ensure the customer VAT numbers provided in orders will also be included in a vat_number
column in the order exports.
Why are there users missing from my customers export?
A registered user must first place at least one order before they will be recognized as a "customer" and appear in the Customers export.
Back to topCan columns be duplicated in a custom export format?
No, columns serve as keys for the column headers, so all duplicate sources will be removed to ensure there are no issues with the generated export.
Back to topCan the Export Status column be removed from the Orders or Users pages?
Of course! Going to the Screen Options pages at the top of these screens will allow you to make adjustments to which collumns will be visible.
Can I export serialized data?
Yes, serialized data can be exported in its serialized form. To add custom meta, you can create a custom format and use the Include all meta option.
Back to topWhy are there no leading zeros in my Excel export?
Excel hides leading zeros by default. This is most often seen with ZIP codes like "01234" – Excel hides the first zero and displays "1234". To make leading zeroes visible in the export, configure Excel to format the column as text.
Back to topHow can I make foreign and special characters display properly in Excel?
This is happening due to an issue with the encoding used by Excel. In order to proceed, we'll need to force Excel to use UTF-8 encoding to render these characters properly by adding this snippet to your site:
add_filter( 'wc_customer_order_csv_export_enable_bom', '__return_true' );
Why is all my data appearing in a single column in Excel?
A common reason for this issue is because your computer may be set up to use a different delimiter than the standard comma. Typically the semicolon can be used as an alternative. Delimiters can be updated in your export format.
Back to topCan Product Add-Ons in the XML file be separated to be found easier?
At this time, this ability is not supported for XML exports. Alternatively, a code snippet is available that should work for most stores.
How can I change the character encoding or XML version?
The defaults should work for most sites, but you can use the wc_customer_order_export_suite_format_definition
filter to filter the character encoding, standalone definition, XML version, or other format definitions. You can use this as a sample snippet to get you started.
More info
- In this section you can find more about how to export customer, order & coupons manually or automatically.