diff --git a/models/user/user.go b/models/user/user.go
index 80843cfed9..ed47db0c0e 100644
--- a/models/user/user.go
+++ b/models/user/user.go
@@ -761,6 +761,7 @@ func createUser(ctx context.Context, u *User, createdByAdmin bool, overwriteDefa
u.Theme = setting.UI.DefaultTheme
u.IsRestricted = setting.Service.DefaultUserIsRestricted
u.IsActive = !setting.Service.RegisterEmailConfirm && !setting.Service.RegisterManualConfirm
+ u.EnableRepoUnitHints = true
// Ensure consistency of the dates.
if u.UpdatedUnix < u.CreatedUnix {
diff --git a/options/locale_next/locale_en-US.json b/options/locale_next/locale_en-US.json
index 1f01726e3a..061f2c4a25 100644
--- a/options/locale_next/locale_en-US.json
+++ b/options/locale_next/locale_en-US.json
@@ -129,6 +129,7 @@
"search.fuzzy_tooltip": "Include results is an approximate match to the search term",
"repo.settings.push_mirror.branch_filter.label": "Branch filter (optional)",
"repo.settings.push_mirror.branch_filter.description": "Branches to be mirrored. Leave blank to mirror all branches. See %[2]s documentation for syntax. Examples: main, release/*",
+ "repo.settings.units.more_units_disable_hint": "The \"Enable more\" hint can be disabled in User settings > Appearance.",
"incorrect_root_url": "This Forgejo instance is configured to be served on \"%s\". You are currently viewing Forgejo through a different URL, which may cause parts of the application to break. The canonical URL is controlled by Forgejo admins via the ROOT_URL setting in the app.ini.",
"themes.names.forgejo-auto": "Forgejo (follow system theme)",
"themes.names.forgejo-light": "Forgejo light",
diff --git a/templates/repo/settings/units.tmpl b/templates/repo/settings/units.tmpl
index a3d958068d..77436e8999 100644
--- a/templates/repo/settings/units.tmpl
+++ b/templates/repo/settings/units.tmpl
@@ -1,6 +1,12 @@
{{template "repo/settings/layout_head" (dict "ctxData" . "pageClass" "repository settings options")}}