Check the docs before asking a question: https://abp.io/docs/latest
Check the samples to see the basic tasks: https://abp.io/docs/latest/samples
The exact solution to your question may have been answered before, and please first use the search on the homepage.
Provide us with the following info:
🧐 Hint: If you are using the ABP Studio, you can see all the information about your solution from the configuration window, which opens when you right-click on the solution and click on the Solution Configuration
button.
-
ABP Framework version: v8.3.4
-
UI Type: Angular
-
Database System: EF Core
-
Tiered (for MVC) or Auth Server Separated (for Angular): yes
I would like to remove the "My Account" option from the sidebar popup menu. Could you please let me know if there is a way to do this?
Thank you
1 Answer(s)
-
0
Hello ,
If you want to hide that name you can write custom css in your angularstyles.scss
file.lpx-menu-item-link.ng-tns-c4125907324-111.ng-star-inserted{ display: none; }
Thank you.