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 „Gefällt mir“
use this theme component
with this URL: https://your-discourse-forum/my/summary
4 „Gefällt mir“
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 „Gefällt mir“
use the CSS Classes for Current User's Groups component and then us CSS to show only for logged in users group.
3 „Gefällt mir“
Would it be possible to hide it for anon users even without that component?
2 „Gefällt mir“
There is an anon
classname attached to <html>
element, that should be possible.
4 „Gefällt mir“
you are correct! I forgot about anon
.anon .whatever-that-icon-class-is {
display: none;
}
4 „Gefällt mir“
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.