diff --git a/wp-admin/includes/class-walker-nav-menu-edit.php b/wp-admin/includes/class-walker-nav-menu-edit.php
index 1f68576..43863cf 100644
--- a/wp-admin/includes/class-walker-nav-menu-edit.php
+++ b/wp-admin/includes/class-walker-nav-menu-edit.php
@@ -70,7 +70,7 @@ class Walker_Nav_Menu_Edit extends Walker_Nav_Menu {
 			'_wpnonce',
 		);
 
-		$original_title = false;
+		$original_title = '';
 		if ( 'taxonomy' == $item->type ) {
 			$original_title = get_term_field( 'name', $item->object_id, $item->object, 'raw' );
 			if ( is_wp_error( $original_title ) )
@@ -196,15 +196,26 @@ class Walker_Nav_Menu_Edit extends Walker_Nav_Menu {
 						<span class="description"><?php _e('The description will be displayed in the menu if the current theme supports it.'); ?></span>
 					</label>
 				</p>
-
-				<fieldset class="field-move hide-if-no-js description description-wide">
-					<span class="field-move-visual-label" aria-hidden="true"><?php _e( 'Move' ); ?></span>
-					<button type="button" class="button-link menus-move menus-move-up" data-dir="up"><?php _e( 'Up one' ); ?></button>
-					<button type="button" class="button-link menus-move menus-move-down" data-dir="down"><?php _e( 'Down one' ); ?></button>
-					<button type="button" class="button-link menus-move menus-move-left" data-dir="left"></button>
-					<button type="button" class="button-link menus-move menus-move-right" data-dir="right"></button>
-					<button type="button" class="button-link menus-move menus-move-top" data-dir="top"><?php _e( 'To the top' ); ?></button>
-				</fieldset>
+				
+				<?php
+				/**
+				 * Let users add custom menu settings without overwriting the whole walker
+				 * @param object $item   Menu item data object.
+				 * @param int    $depth  Depth of menu item. Used for padding.
+				 */
+				do_action('add_menu_settings', $item, $depth, $classes );
+				?>
+
+				<p class="field-move hide-if-no-js description description-wide">
+					<label>
+						<span><?php _e( 'Move' ); ?></span>
+						<a href="#" class="menus-move menus-move-up" data-dir="up"><?php _e( 'Up one' ); ?></a>
+						<a href="#" class="menus-move menus-move-down" data-dir="down"><?php _e( 'Down one' ); ?></a>
+						<a href="#" class="menus-move menus-move-left" data-dir="left"></a>
+						<a href="#" class="menus-move menus-move-right" data-dir="right"></a>
+						<a href="#" class="menus-move menus-move-top" data-dir="top"><?php _e( 'To the top' ); ?></a>
+					</label>
+				</p>
 
 				<div class="menu-item-actions description-wide submitbox">
 					<?php if ( 'custom' != $item->type && $original_title !== false ) : ?>
