diff --git a/typo3/sysext/backend/Classes/View/PageLayoutView.php b/typo3/sysext/backend/Classes/View/PageLayoutView.php
index 034b4828a459d1820c05f31ebf4a8e7bcff92daf..bf4cc23178a42da8618c02a874dfaff435c5038d 100644
--- a/typo3/sysext/backend/Classes/View/PageLayoutView.php
+++ b/typo3/sysext/backend/Classes/View/PageLayoutView.php
@@ -2013,9 +2013,6 @@ class PageLayoutView implements LoggerAwareInterface
         }
         $allowDragAndDrop = $this->isDragAndDropAllowed($row);
         $additionalIcons = [];
-        if ($row['sys_language_uid'] > 0 && $this->checkIfTranslationsExistInLanguage([], (int)$row['sys_language_uid'])) {
-            $allowDragAndDrop = false;
-        }
         $additionalIcons[] = $this->getIcon('tt_content', $row) . ' ';
         $additionalIcons[] = $langMode ? $this->languageFlag($row['sys_language_uid'], false) : '';
         // Get record locking status:
@@ -2046,10 +2043,13 @@ class PageLayoutView implements LoggerAwareInterface
      */
     protected function isDragAndDropAllowed(array $row)
     {
-        if ($this->getBackendUser()->isAdmin()
-            || ((int)$row['editlock'] === 0 && (int)$this->pageinfo['editlock'] === 0)
-            && $this->getBackendUser()->doesUserHaveAccess($this->pageinfo, Permission::CONTENT_EDIT)
-            && $this->getBackendUser()->checkAuthMode('tt_content', 'CType', $row['CType'], $GLOBALS['TYPO3_CONF_VARS']['BE']['explicitADmode'])
+        if ((int)$row['l18n_parent'] === 0 &&
+            (
+                $this->getBackendUser()->isAdmin()
+                || ((int)$row['editlock'] === 0 && (int)$this->pageinfo['editlock'] === 0)
+                && $this->getBackendUser()->doesUserHaveAccess($this->pageinfo, Permission::CONTENT_EDIT)
+                && $this->getBackendUser()->checkAuthMode('tt_content', 'CType', $row['CType'], $GLOBALS['TYPO3_CONF_VARS']['BE']['explicitADmode'])
+            )
         ) {
             return true;
         }
diff --git a/typo3/sysext/backend/Resources/Public/JavaScript/LayoutModule/DragDrop.js b/typo3/sysext/backend/Resources/Public/JavaScript/LayoutModule/DragDrop.js
index 43dfd4234b6d8251276ebf922cc3bf67fb501916..90036f2bb9ed1d091ab2836fb1b5eb5f4f41082f 100644
--- a/typo3/sysext/backend/Resources/Public/JavaScript/LayoutModule/DragDrop.js
+++ b/typo3/sysext/backend/Resources/Public/JavaScript/LayoutModule/DragDrop.js
@@ -42,7 +42,7 @@ define(['jquery', 'jquery-ui/droppable'], function ($) {
 	 */
 	DragDrop.initialize = function () {
 		$(DragDrop.contentIdentifier).draggable({
-			handle: this.dragHeaderIdentifier,
+			handle: DragDrop.dragHeaderIdentifier,
 			scope: 'tt_content',
 			cursor: 'move',
 			distance: 20,
@@ -90,14 +90,12 @@ define(['jquery', 'jquery-ui/droppable'], function ($) {
 		$element.parents(DragDrop.columnHolderIdentifier).find(DragDrop.addContentIdentifier).hide();
 		$element.find(DragDrop.dropZoneIdentifier).hide();
 
-		// make the drop zones visible
 		$(DragDrop.dropZoneIdentifier).each(function () {
-			if (
-				$(this).parent().find('.icon-actions-add').length
-			) {
-				$(this).addClass(DragDrop.validDropZoneClass);
+			var $me = $(this);
+			if ($me.parent().find('.icon-actions-add').length) {
+				$me.addClass(DragDrop.validDropZoneClass);
 			} else {
-				$(this).closest(DragDrop.contentIdentifier).find('> ' + DragDrop.addContentIdentifier + ', > > ' + DragDrop.addContentIdentifier).show();
+				$me.closest(DragDrop.contentIdentifier).find('> ' + DragDrop.addContentIdentifier + ', > > ' + DragDrop.addContentIdentifier).show();
 			}
 		});
 	};
@@ -220,7 +218,7 @@ define(['jquery', 'jquery-ui/droppable'], function ($) {
 	};
 
 	/**
-	 * this method does the actual AJAX request for both, the  move and the copy action.
+	 * this method does the actual AJAX request for both, the move and the copy action.
 	 *
 	 * @param $droppableElement
 	 * @param $draggableElement