WPIntell

Source evidence

Export Pre-orders to CSV

Pre-Orders for WooCommerce · support · 2024-09-07T23:29:00+00:00

mixedsentiment
mediumseverity
0.85relevance
5replies
Evidence onlycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

1 / 1 rows with source links

100.0% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

0 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
lmstudio resolved
Since the pre-orders are not recognized by WooCommerce until they transition into Processing, there doesn’t seem to be any way to export the list of pre-orders to a spreadsheet. This is a simple thing to do in Woo once the orders become active, but I would like to give my client a list of the current pre-orders. Am I missing something or is this not possible? The page I need help with: [ log in to see the link] Thanks for sending in your support topic. Our team will be looking into things shortly. For faster and better support, please provide your WooCommerce Status Report (provide link to the instructions on WooCommerce), screenshot, error info, and visit our site’s support section for additional help. Due to forum policies, we are not able to share any credentials, provide files/patches, or sensitive information. Thank you, Alfred Hello, Thank you for reaching out with your support request. For faster and more effective support, please refer to this documentation on our website:What are the necessary meta fields to import pre-ordered products?. It explains how to export and import a list of pre-orders. Due to forum policies, we are unable to share any credentials, provide files/patches, or sensitive information here. Best regards, Peace! I need to export a list of PREORDERS AND ORDERS, not the products. I should be able to do this in the Reports tab under WooCommerce, but no sales show up there. Many of my preorders are now at “processing” status and they still don’t show up under sales. What needs to happen to be be able to export a list of purchase? Hi, I hope this message finds you well. The hook is given below. Add this hook in theme functions.php file. // Include 'Pre-Order' in WooCommerce reports function register_status_on_reports($order_statuses) { $order_statuses[] = 'pre-ordered'; return $order_statuses; } add_filter('woocommerce_reports_order_statuses', 'register_status_on_reports', 20, 1); User this hook to add Pre orders in Sales Report. Then you can export orders. Hi, I hope you are well. As we haven’t received a recent response, I’ll mark this as resolved. Feel free to open a new ticket, if you continue encountering issues or reopen this ticket We’d be happy to assist. Thank you! Best regards, peace!

Comments

5 shown
alfredjr18 2024-09-10T19:10:00+00:00

Thanks for sending in your support topic. Our team will be looking into things shortly. For faster and better support, please provide your WooCommerce Status Report (provide link to the instructions on WooCommerce), screenshot, error info, and visit our site’s support section for additional help. Due to forum policies, we are not able to share any credentials, provide files/patches, or sensitive information. Thank you, Alfred

mathdaniel 2024-09-24T16:06:00+00:00

Hello, Thank you for reaching out with your support request. For faster and more effective support, please refer to this documentation on our website:What are the necessary meta fields to import pre-ordered products?. It explains how to export and import a list of pre-orders. Due to forum policies, we are unable to share any credentials, provide files/patches, or sensitive information here. Best regards, Peace!

lmstudio 2024-09-25T18:02:00+00:00

I need to export a list of PREORDERS AND ORDERS, not the products. I should be able to do this in the Reports tab under WooCommerce, but no sales show up there. Many of my preorders are now at “processing” status and they still don’t show up under sales. What needs to happen to be be able to export a list of purchase?

shahidbrightvessel 2024-11-13T14:47:00+00:00

Hi, I hope this message finds you well. The hook is given below. Add this hook in theme functions.php file. // Include 'Pre-Order' in WooCommerce reports function register_status_on_reports($order_statuses) { $order_statuses[] = 'pre-ordered'; return $order_statuses; } add_filter('woocommerce_reports_order_statuses', 'register_status_on_reports', 20, 1); User this hook to add Pre orders in Sales Report. Then you can export orders.

mathdaniel 2024-12-10T14:48:00+00:00

Hi, I hope you are well. As we haven’t received a recent response, I’ll mark this as resolved. Feel free to open a new ticket, if you continue encountering issues or reopen this ticket We’d be happy to assist. Thank you! Best regards, peace!