Guest User

Untitled

a guest
Apr 21st, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. add_action('woocommerce_checkout_process', 'myfunction');
  2. function myfunction() {
  3. $order = wc_create_order();
  4. $order->add_product( wc_get_product($productid), 1); // This is an existing SIMPLE product
  5. $order->set_address( $address, 'billing' );
  6. $order->calculate_totals();
  7. $order->update_status("Completed", 'Order status', TRUE);
  8. }
Add Comment
Please, Sign In to add comment