Reputation: 343
All my orders items change to zero (0) when I export from my wordpress dashboard. When I import to the new database, it changes to all to 0. Before it was 2 items, 1 items for some orders. What I did is Tools -> Export -> Orders -> Download export file.
Upvotes: 1
Views: 541
Reputation: 11861
"WooCommerce Order Export Import Plugin helps you to easily export and import orders in your store. This plugin lets you import/export all orders with line item details. " From WordPress Plugin Directory
Upvotes: 1
Reputation: 1
Add this code in your child function.php
add_filter ( 'wc_order_is_editable', 'majemedia_add_order_statuses_to_editable' );
function majemedia_add_order_statuses_to_editable () {
return TRUE;
}
now you can edit orders... try editing orders and let know if any issues
Upvotes: 0