我正在创建一个执行以下操作的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' => '*',
'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对象可用的所有功能.
希望这能回答您的问题