No default homepage user option

That option stills in Discourse?

Screen Shot 2017-11-16 at 11.42.27
https://github.com/discourse/discourse/pull/5268

I don’t see it in our latest Discourse forum:

Works for me on latest:

image

Are you sure you don’t have a Theme Component or Plugin installed that is accidentally hiding this control? (via some CSS clash) Check your browser’s inspector too.

1 Like

Thank you. It’s weird but changing that

.user-preferences .control-group.home {
display: none;
}

to

.user-preferences .control-group.home {
display: block !important;
}

does the trick (!important selector is needed because some plugin was hidding with style tag).

2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.