• Resolved pablog

    (@pablogutierrez)


    Hi!

    Thanks for this FANTASTIC plugin that has saved us hours of work.

    We see the “Date of the last order” field when creating the export. However, this field includes orders with “Cancelled”, “Hold” and “Failed” status.

    Is there any way we can get the date of the last PAID order (Processing or Completed status) of the client?

    Thanks again!

    • This topic was modified 1 year, 7 months ago by pablog.
    • This topic was modified 1 year, 7 months ago by pablog.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author algol.plus

    (@algolplus)

    Hi

    please, open section “Misc Settings” and add this code

    add_filter( 'wc_order_statuses', function($order_statuses){
    return array(
    'wc-processing' => _x( 'Processing', 'Order status', 'woocommerce' ),
    'wc-completed' => _x( 'Completed', 'Order status', 'woocommerce' ),
    );
    });

    Thread Starter pablog

    (@pablogutierrez)

    YES it worked! Thanks a LOT!

    Question: When exporting the settings of the plugin, does it include this kind of “Misc settings codes”?

    Thanks.

    Plugin Author algol.plus

    (@algolplus)

    Yes.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Date of the last PAID order?’ is closed to new replies.