• Resolved guardiano78

    (@guardiano78)


    Hello,
    i wish i could write a note to the customer in the order via php.

    For private notes, I did it this way:

    
    $order = new WC_Order($order_id);
    if(isset($order_note))
    {
      $order->add_order_note($order_note);
      $order->save();
    }

    But that’s not what I need.
    What I want is to write a customer note.

    Could you tell me if it can be done? and how?
    Thank you!

    Renato

Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Add customer note to order’ is closed to new replies.