I'm using ASP.Net Zero 11.3 Core.
I want to remove the Chat and Dark/Light Mode functionality/icons at the top of the screen.
What is the recommended way of doing this?
3 Answer(s)
-
0
Hi @Mitch
You can remove those icons from your source code.If you can share your project type, I can share the specific file with you. You can also remove chat related JavaScript/Typescript files as well.
-
0
Thanks for the quick response. The project is MVC Core jQuery 11.3 (not Angular!)
-
0
Thanks,
For chat, you can go to - >
\Areas\AppAreaName\Views\Layout\_Layout.cshtml
and delete chat related lines here. You can also delete items like_ChatBar.cshtml
,_ChatBar.js
and similar items from your project.For dark mode toggler, you can remove
AppAreaNameToggleDarkModeViewComponent.cs
, it's cshtml file and their usages.