Voeg een link naar het gebruikersprofiel toe in de navigatie

Hello! How can I add a user profile link to the top navigation? So that the user can go in one click, not through 3 from the menu.

1 like

use this theme component

with this URL: https://your-discourse-forum/my/summary

4 likes

Thank you. I tried it through this plugin, but I didn’t know the correct path to the profile without specifying a nickname

Is there a way to show this link only to an authorized user?

1 like

use the CSS Classes for Current User's Groups component and then us CSS to show only for logged in users group.

3 likes

Would it be possible to hide it for anon users even without that component?

2 likes

There is an anon classname attached to <html> element, that should be possible.

4 likes

you are correct! I forgot about anon :slight_smile:

.anon .whatever-that-icon-class-is {
    display: none;
}
4 likes

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