• Resolved togsteam

    (@togsteam)


    I see this question asked long ago, but I couldn’t locate any answers. Can we change the status assigned to pay-by-invoice orders to ‘Pending Payment’? The status value Processing has specific meaning in Woo, and we’re having trouble correctly integrating PBI orders through our ShipStation and MyWorks (Quickbooks synch) plugins.

    Thanks!

Viewing 1 replies (of 1 total)
  • Plugin Support Fauzan Azizie

    (@fauzanade)

    Hi @togsteam,

    You could use this snippet to change the default order status of order paid by invoice payment to pending payment:

    add_filter(‘igfw_invoice_gateway_process_payment_order_status’, ‘change_invoice_payment_order_status’ );
    function change_invoice_payment_order_status( $order_status, ) {
    return ‘pending-payment’;
    }

    Please kindly add it to your child theme’s function.php.

    Cheers,

Viewing 1 replies (of 1 total)
  • The topic ‘Change default ‘Processing’ invoice order status’ is closed to new replies.