diff --git a/uc_order/uc_order.admin.inc b/uc_order/uc_order.admin.inc
index 7945018..fa02660 100644
--- a/uc_order/uc_order.admin.inc
+++ b/uc_order/uc_order.admin.inc
@@ -9,16 +9,6 @@ use Drupal\Component\Utility\SafeMarkup;
 use Drupal\Core\Form\FormStateInterface;
 
 /**
- * Creates a new order for the specified customer, ready for editing.
- */
-function uc_order_create_for_user($account) {
-  $order = uc_order_new($account->uid, 'post_checkout');
-  uc_order_comment_save($order->id(), \Drupal::currentUser()->id(), t('Order created by the administration.'), 'admin');
-
-  drupal_goto('admin/store/orders/' . $order->id() . '/edit');
-}
-
-/**
  * Displays a form to select a previously entered address.
  *
  * @see uc_order_address_book_form()
diff --git a/uc_order/uc_order.module b/uc_order/uc_order.module
index 59b7f30..834e831 100644
--- a/uc_order/uc_order.module
+++ b/uc_order/uc_order.module
@@ -43,14 +43,6 @@ function uc_order_help($route_name, RouteMatchInterface $route_match) {
  * Implements hook_menu().
  */
 function uc_order_menu() {
-  $items['admin/store/orders/create/%user'] = array(
-    'title' => 'Create order for this customer',
-    'description' => 'Create an empty new order.',
-    'page callback' => 'uc_order_create_for_user',
-    'page arguments' => array(4),
-    'access arguments' => array('create orders'),
-    'file' => 'uc_order.admin.inc',
-  );
   $items['admin/store/orders/address_book'] = array(
     'title' => 'Select address',
     'page callback' => 'uc_order_address_book',
@@ -398,25 +390,6 @@ function uc_order_uc_line_item() {
 }
 
 /**
- * Generates and saves a new order.
- *
- * @param $uid
- *   The user ID to assign the order to.
- * @param $state
- *   The initial state of the order.
- */
-function uc_order_new($uid = 0, $state = 'in_checkout') {
-  $order = Order::create(array(
-    'uid' => $uid,
-    'order_status' => uc_order_state_default($state),
-  ));
-
-  $order->save();
-
-  return $order;
-}
-
-/**
  * Save a product to an order.
  */
 function uc_order_product_save($order_id, $product) {
@@ -786,4 +759,4 @@ function uc_order_actions($order, $icon_html = FALSE) {
     '#type' => 'operations',
     '#links' => $actions,
   );
-}
\ No newline at end of file
+}
