'forbidden' ) ); }\n\tif ( ! WC()->cart || WC()->cart->is_empty() ) { wp_send_json( array( 'error' => 'empty cart' ) ); }\n\tWC()->cart->calculate_totals();\n\t$data = array(\n\t\t'billing_first_name' => 'TEST', 'billing_last_name' => 'FACTUUR',\n\t\t'billing_address_1' => 'Teststraat 1', 'billing_city' => 'Zeist', 'billing_postcode' => '3700AA',\n\t\t'billing_country' => 'NL', 'billing_email' => 'test@ralphzabel.com',\n\t\t'payment_method' => 'bacs', 'shipping_method' => array(),\n\t);\n\t$order_id = WC()->checkout()->create_order( $data );\n\tif ( is_wp_error( $order_id ) ) { wp_send_json( array( 'error' => $order_id->get_error_message() ) ); }\n\t$order = wc_get_order( $order_id );\n\t$order->update_status( 'pending' );\n\twp_send_json( array( 'order_id' => $order_id ) );\n} );\n