إضافة رابط لملف المستخدم في التنقل

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)

use this theme component

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

4 إعجابات

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)

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

3 إعجابات

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

إعجابَين (2)

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

4 إعجابات

you are correct! I forgot about anon :slight_smile:

.anon .whatever-that-icon-class-is {
    display: none;
}
4 إعجابات

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