=== WooCommerce - Store Exporter ===
Contributors: visser, visser.labs
Donate link: https://www.visser.com.au/donations/
Tags: e-commerce, woocommerce, shop, cart, ecommerce, export, csv, xml, xls, xlsx, excel, customers, products, sales, orders, coupons, users, attributes, subscriptions
Requires at least: 2.9.2
Tested up to: 4.7.5
Stable tag: 1.8.6
License: GPLv2 or later
Export store details out of WooCommerce into simple formatted files (e.g. CSV, XML, Excel 2007, XLS, etc.).
== Description ==
Screen-loads of options and filters let you design advanced exports to suit your store requirements, or simply go with the default and click Export to produce concise, ready to use exports.
Store Exporter maintains compatibility with the latest WooCommerce updates receiving regular feature updates trusted by 20,000+ active users. Happy exporting!
= Features =
Features include:
* Export Products (*)
* Export Products by Product Category
* Export Products by Product Status
* Export Products by Type including Variations
* Export Categories
* Export Tags
* Export Brands (*)
* Export Orders (*)
* Export Orders by Order Status (*)
* Export Orders by Order Date (*)
* Export Orders by Customers (*)
* Export Orders by Coupon Code (*)
* Export Customers (*)
* Export Customers by Order Status (*)
* Export Users
* Export Coupons (*)
* Export Subscriptions (*)
* Export Commissions (*)
* Export Product Vendors (*)
* Export Shipping Classes (*)
* Export Attributes (*)
* Toggle and save export fields
* Field label editor (*)
* Works with WordPress Multisite
* Export to CSV file
* Export to TSV file (*)
* Export to XML file (*)
* Export to Excel 2007 (XLS) file (*)
* Export to Excel 2013 (XLSX) file (*)
* Export to WordPress Media
* Export to e-mail addresses (*)
* Export to remote POST (*)
* Export to remote FTP (*)
* Supports external CRON commands (*)
* Supports scheduled exports (*)
(*) Requires the Pro upgrade to enable additional store export functionality.
> ** Go Pro **
>
> Unlock the business focused e-commerce features within Store Exporter such as scheduled exporting from [this link](http://www.visser.com.au/plugins/store-exporter-deluxe/).
>
> Full documentation and usage of Store Exporter Deluxe is available from the [support section for Store Exporter Deluxe](http://www.visser.com.au/documentation/store-exporter-deluxe/).
= Native integration with 50+ WooCommerce Plugins =
Just a few of the features unlocked in the Pro upgrade of Store Exporter include:
- Export All in One SEO Pack
- Export Advanced Google Product Feed
- Export Product Addons
- Export Sequential Order Number Pro
- Export Checkout Manager
- Export Checkout Manager Pro
- Export Checkout Field Editor
- Export Cost of Goods
- Export Per-Product Shipping
- Export Print Invoice & Delivery Note
- Export Local Pickups Plus
- Export WooCommerce Subscriptions
- Export Checkout Field Manager
- Export Currency Switcher
- Export WooCommerce PDF Invoices & Packing Slips
- Export WooCommerce Checkout Add-ons
- Export Product Vendors
- Export WooCommerce Jetpack
- Import fields for Product Importer Deluxe
... and more free and Premium extensions for WooCommerce.
Want regular updates? Become a fan on Facebook!
http://www.facebook.com/visser.labs/
For more information visit: http://www.visser.com.au/woocommerce/
== Installation ==
1. Upload the folder 'woocommerce-exporter' to the '/wp-content/plugins/' directory
2. Activate 'WooCommerce - Store Exporter' through the 'Plugins' menu in WordPress
See Usage section before for instructions on how to generate export files.
== Usage ==
1. Open WooCommerce > Store Export from the WordPress Administration
2. Select the Export tab on the Store Exporter screen
3. Select which export type and WooCommerce details you would like to export
4. Click Export
5. Download archived copies of previous exports from the Archives tab
Done!
== Support ==
If you have any problems, questions or suggestions please join the members discussion on our WooCommerce dedicated forum.
http://www.visser.com.au/woocommerce/forums/
== Screenshots ==
1. The overview screen for Store Exporter.
2. Select the data fields to be included in the export, selections are remembered for next export.
3. Each dataset (e.g. Products, Orders, etc.) include filter options to filter by date, status, type, customer and more.
4. A range of export options can be adjusted to suit different languages and file formatting requirements.
5. Export a list of WooCommerce Product Categories into a CSV file.
6. Export a list of WooCommerce Product Tags into a CSV file.
7. Download archived copies of previous exports
8. Use the Field Editor to relabel export fields to your preferred names
9. Drag-and-drop export fields to your preferred ordering, sorting is saved between screen refreshes.
== Disclaimer ==
It is not responsible for any harm or wrong doing this Plugin may cause. Users are fully responsible for their own use. This Plugin is to be used WITHOUT warranty.
I’m using Exporter 1.2, WP e-commerce 3.8.7.6.2 and Custom Fields 1.4.3
Does Exporter include custom fields? I have added only one custom field ‘Author’, and I do not see it in the exported products csv file.
I was able to get Exporter to include my Custom Fields data ‘author’ by adding a few lines to the plugin:
You can see I have customised this section:
case 'products':
$columns = array(
'ISBN',
'Title',
'Author',
'Description',
'Price',
'Category',
'Image',
);
and this section:
if( $products ) {
foreach( $products as $product ) {
$product_data = get_post_meta( $product->ID, '_wpsc_product_metadata', true );
$product->sku = get_product_meta( $product->ID, 'sku', true );
$product->description = wpsc_ce_clean_html( $product->description );
$product->price = get_product_meta( $product->ID, 'price', true );
$product->category = wpsc_ce_get_product_categories( $product->ID );
$product->image = wpsc_ce_get_product_images( $product->ID );
$product->author = get_product_meta( $product->ID, 'author', true );
foreach( $product as $key => $value )
$product->$key = '"' . wpsc_ce_has_value( $value ) . '"';
$csv .=
$product->sku . $separator .
$product->name . $separator .
$product->author . $separator .
$product->description . $separator .
$product->price . $separator .
$product->category . $separator .
$product->image . $separator .
"\n";
}
}
Seems to be doing the same thing again.
On export I get just one product in csv.
Can I get the older version of this plugin anywhere to try.
Seems that one worked at some stage…
Hi Michael,
I have about 100 of products and every product has variations, updating these manually is a suicide 🙁 is there anyway to import product variation using csv ?
Michael, Thank you for offering this plugin.
Does this export custom attributes?
any suggestions on this. Client uses custom attributes and needs those to export with products.
pretty please 🙂
Hi, will this export Orders, as well? Or only products?
Hi Karl, at this time only Products are supported. I’m looking at Order support in a future Plugin update 🙂
When I try and export products (906 total) it starts the export, than immediately redirects to an error page that says:
File not found
Firefox can’t find the file at http://www.site.com/wp-admin/tools.php?page=wpsc_ce.
of course “site.com” is my url, just put that there for security purposes for now
I’m having this issue too.
In Safari nothing happens.
In Firefox I get the same error as above. Any ideas?
Any news? I have a client waiting for this functionality, so any help would be appreciated…
Hi. Did this ever get resolved as I’m having the same problem? Can export categories however trying to export products renders /tools.php?page=wpsc_ce page not found
I’m having this same problem on one store site, but not on the other one. Any solutions?
I had this problem and just updated the plugin and worked fine!
Hi Michael,
I just ran the exporter script on a client website and it doesn’t seem like it’s exporting dimensions / weights – Or am I doing something wrong?
Still no answer.
Hi Riaan, I’ll reproduce this with the latest release and update as neccesary. Thanks for raising this. 🙂
Hi Michael,
Thanks for getting back to me. I appreciate it :). Any chance you had a look at my other comment on the Super Sort plugin?
Can this be automated to use as a product feed for services like Google merchant center?
Exporter gives me a CSV file that has all our products. But when I try to import into OpenOffice to modify the columns, it always formats into one column only. I’ve set “Separated by” to comma, and “Text delimeter” to double-quote. Even though the preview in the import dialog looks good, it still always puts everything into one column instead of properly.
Anybody else had this problem?
Thanks,
Paul
Note: it opened into Kingsoft Spreadsheets, where I saw that a couple of the product rows must have something wrong with them which messed them up during the import. I’m not sure what causes it, extra carriage returns, or maybe unwanted double-quotes? But at least Kingsoft formats the other rows fine, so I could fix the ones that are mixed up.
Paul
I’m also having this problem 🙁
[…] you have a long sidebar, and it’s easy to implement.Download Author: Andrew Benbow#8 – WooCommerce ExporterThis free plugin lets you export your products into a CSV file. A handy thing to have at your […]
Hi Michael.
Does this plugin offer more options than exporting Product data e.g. orders, stock levels etc.?
Here’s a screen cap of what I have available in Store Export: https://skitch.com/kickmuck/gq99r/wp-e-commerce-exporter.
Cheers,
David
Hi sunstardave, this is an early release. I’ll be cooking more features into subsequent Plugin updates. If we’re exporting Sales data we might as well add a facility to the importer to bring that data back in, my concern is how to export cart items assigned to each Sale while using the constraints of 1 row per Sale (or perhaps adding a Order ID to allow each row to be a cart item perhaps). Thoughts?
Hi Michael.
Thanks very much for the quick reply. And of course for making the plugin/s.
There are a couple I’m going to need for a project I’m working on, so will break out the credit card soon. 🙂
Cheers,
David
Hi.
Can you please clarify if this plugin is intended for WooCommerce. It does say, “Export store details out of WooCommerce into a CSV-formatted file.” but is called “Download Exporter for WP e-Commerce – (1.2)” so I’m a bit confused which e-commerce system it’s for unless of course it’s for both.
Thanks a lot.
David
Hi David, yes, this is a WooCommerce exporter. I copied the Plugin template from another for this Page so will correct that now. I also have an exporter for WP e-Commerce and Jigoshop! 🙂
Hi Andrew, you can see it here –> http://www.visser.com.au/wp-ecommerce/plugins/exporter/
I get a fatal error saying: cannot use string offset as an array in /home/content/23/7508223/html/wp-content/plugins/wp-e-commerce-exporter/includes/release-3_8.php on line 157
Hi Jakob, this has been fixed in the 1.2 Plugin update.
Works!
I am getting that same error with version 1.2 any clues what can be done?
Have the same issue with 1.2
I have tried this plugin on two different stores and it is only giving me one product.
Hi Philip, it could be that the post status affected the number of Products included in the CSV, try the latest release. 🙂
Yes that seems to work a whole lot better,
Thanks Michael.