diff --git a/settings/admin.php b/settings/admin.php
index 1c1cbd9975f30e1be8271fcee637d08fe65be1a7..d1ed6e75f501adb1244fadfaa52e4a3abdd2e7fc 100644
--- a/settings/admin.php
+++ b/settings/admin.php
@@ -93,7 +93,7 @@ $formsMap = array_map(function ($form) {
 		$anchor = str_replace(' ', '-', $anchor);
 
 		return array(
-			'anchor' => $anchor,
+			'anchor' => 'goto-' . $anchor,
 			'section-name' => $sectionName,
 			'form' => $form
 		);
diff --git a/settings/personal.php b/settings/personal.php
index 9c27f77ccd351be9f3e3f2854bb54c3b73d9b25c..bef800ae7f146e7128aefb13a7b4c4c3625b242f 100644
--- a/settings/personal.php
+++ b/settings/personal.php
@@ -114,7 +114,7 @@ $formsMap = array_map(function($form){
 		$anchor = str_replace(' ', '-', $anchor);
 
 		return array(
-			'anchor' => $anchor,
+			'anchor' => 'goto-' . $anchor,
 			'section-name' => $sectionName,
 			'form' => $form
 		);