php自动更新新订单,php-在结帐页面中更新woocommerce订单,而不是创建一个新的

我正在创建一个执行以下操作的Wordpress和WooCommerce插件:

>匿名用户在页面上自定义产品

>在过程中的php脚本中,它在数据库中创建一个订单

>用户转到要求客户数据,交货等的结帐页面.

通过单击“立即购买”,WooCommerce在系统中创建了一个新订单,我要更新的是在个性化过程中先前创建的订单,将客户详细信息,付款,交货等添加到订单中.

可能吗?

谢谢!

解决方法:

您可以使用函数wc_update_order()来获取现有的订单对象.

$order_id = $_GET[ 'order_id' ]

$order = wc_update_order( array ( 'order_id' => $order_id ) );

// now you got the woocommerce order object and you can execute many functions

//

$address = array(

'first_name' => 'Fresher',

'last_name' => 'StAcK OvErFloW',

'company' => 'stackoverflow',

'email' => 'test@test.com',

'phone' => '777-777-777-777',

'address_1' => '31 Main Street',

'address_2' => '',

'city' => 'Chennai',

'state' => 'TN',

'postcode' => '12345',

'country' => 'IN'

);

$order->add_product( get_product( '12' ), 1 ); //(get_product with id and next is for quantity)

$order->set_address( $address, 'billing' );

$order->set_address( $address, 'shipping' );

$order->calculate_totals();

有关可以在订单对象上调用的所有功能的完整列表,请在获取订单后执行以下代码

var_dump( get_class_methods( $order ) );

这将列出Woocommerce Order对象可用的所有功能.

希望这能回答您的问题

标签:php,wordpress,woocommerce,wordpress-plugin

来源: https://codeday.me/bug/20191009/1880791.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值