• Hi,

    I would like to make a feature request. Right now when someone completes the payment the order status is updated to Completed. But this is very confusing, because it wasn’t shipped yet. It should be processing.

    I also have other payments method enabled ,like bank transfer and once someone placed a new order, it’s status is updated to processing.

    Would you please considerate changing this ?

    Thanks

Viewing 1 replies (of 1 total)
  • Hi,

    Here is my implemented solution, working 100%:

    Edit wc-netopiapayments-gateway.php:

    line 424:

    current:
    if( $order->get_status() != 'completed' ) {

    edited
    if( $order->get_status() != 'processing' ) {

    line 466

    current:
    $order->update_status( 'completed', 'Payment received, your order is now complete.' );

    edited
    $order->update_status( 'processing', 'Payment received, your order is now complete.' );

    line 481

    current:
    $order->update_status( 'completed', 'Payment received, your order is currently being processed.' );

    edited:
    $order->update_status( 'processing', 'Payment received, your order is currently being processed.' );

    Save a backup of the original file in any case. For me is working 100%.

    Hope it helps.
    Cheers

Viewing 1 replies (of 1 total)
  • The topic ‘Order Status’ is closed to new replies.