• Resolved sebagil

    (@sebagil)


    Hello,

    Thank you for plugin, it’s awesome!

    I need new order status to be set as “pending payment” o a custom status that we created instead of “processing” please. How can I do so?

    As using this plugin sets new orders to “processing”.

    Thank you

    Cheers!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Nitin Prakash

    (@nitin247)

    Hi @sebagil

    This plugin does not support the feature at this moment. I am attaching a code snippet that should work. You may try adding the code to your theme’s functions.php

    add_action( ‘woocommerce_thankyou’, ‘wpowp_change_order_status’ );

    function wpowp_change_order_status( $order_id ){
    if( ! $order_id ) return;
    $order = wc_get_order( $order_id );
    // Status without the “wc-” prefix
    $order->update_status( ‘pending’ );
    }`

    Please let me know

    Thread Starter sebagil

    (@sebagil)

    ?Hi Nitin! Thanks for your answer.

    I put this code in Code Snippet but they have a fatal error. This is the notification:

    “No te preocupes

    El fragmento de código que estás intentando guardar ha producido un error fatal en la línea 7: syntax error, unexpected ‘&’

    La versión anterior del fragmento de código no ha cambiado y el resto del sitio debería funcionar como antes.

    Por favor, usa el botón para volver atrás de tu navegador para regresar a la página anterior e intenta corregir el error del código. Si lo prefieres, puedes cerrar esta página y descartar los cambios que has hecho. No se hará ningún cambio en este sitio.”

    We use another plugins to add functionalities to WooCommerce, maybe they have some incompatibility?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change status of orders’ is closed to new replies.