为了账号安全,请及时绑定邮箱和手机立即绑定

当客户在 WooCommerce 中批准订单时向他们添加订单备注

当客户在 WooCommerce 中批准订单时向他们添加订单备注

PHP
慕斯王 2023-08-26 17:35:06
在 WooCommerce 中,允许客户在 WooCommerce 中更改订单状态回答我之前的问题,允许客户在“我的帐户”页面中批准(完成)订单,但我不知道如何自动添加注释,因此当客户批准订单(订单状态更改为已完成),我想自动为客户添加注释。当客户批准订单并且状态更改为“已完成”时,是否可以添加注释?
查看完整描述

1 回答

?
慕的地6264312

TA贡献1817条经验 获得超6个赞

如果您想要客户的订单备注,请替换以下代码行:


        // Change order status to "completed"

        $order->update_status( 'completed', __('Approved by the customer', 'woocommerce') ) ;

经过:


        // Add an order note for the customer (blue background note in admin orders)

        $order->add_order_note( __('You have approved this order on', 'woocommerce') . ' ' . date_i18n( 'F j, Y' ), true );


        // Change order status to "completed"

        $order->update_status( 'completed', __('Approved by the customer', 'woocommerce') ) ;

查看完整回答
反对 回复 2023-08-26
  • 1 回答
  • 0 关注
  • 82 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信