diff --git a/uc_order/uc_order.module b/uc_order/uc_order.module index 5756e6b9..db22c5ae 100644 --- a/uc_order/uc_order.module +++ b/uc_order/uc_order.module @@ -26,6 +26,7 @@ function uc_order_menu() { 'access arguments' => array('view customers'), 'weight' => -9, 'file' => 'uc_order.admin.inc', + 'position' => 'left', ); // admin/store/customers/view is provided by Views. // admin/store/customers/orders/% is provided by Views. @@ -71,6 +72,7 @@ function uc_order_menu() { 'access arguments' => array('view all orders'), 'weight' => -8, 'file' => 'uc_order.admin.inc', + 'position' => 'left', ); // admin/store/orders/view is provided by Views. $items['admin/store/orders/create'] = array( diff --git a/uc_store/uc_store.module b/uc_store/uc_store.module index 59b1912e..17596dd2 100644 --- a/uc_store/uc_store.module +++ b/uc_store/uc_store.module @@ -174,14 +174,14 @@ function uc_store_menu() { 'access arguments' => array('view reports'), 'weight' => 2, 'file' => 'uc_store.admin.inc', - 'position' => 'right', + 'position' => 'left', ); $items['admin/store/settings'] = array( 'title' => 'Configuration', 'description' => 'Adjust configuration settings for Ubercart.', 'page callback' => 'uc_store_configuration_page', 'access arguments' => array('administer store'), - 'weight' => -10, + 'weight' => 10, 'file' => 'uc_store.admin.inc', 'position' => 'right', );