Hello everyone
I want to change Orchard admin dashboard but I could not to do that. I've added this code in a .CS file
public class AdminOverride : IThemeSelector
{
public ThemeSelectorResult GetTheme(RequestContext context)
{
if (AdminFilter.IsApplied(context))
{
return new ThemeSelectorResult { Priority = 111, ThemeName
= "NewAdminTheme" };
}
return null;
}
}
and I have added this line to Theme.txt
BaseTheme: TheAdmin
but nothing works for me I'm beginner in Orchard and unfortunately I could not find a tutorial that helps me. Thanks a lot in advance
Hello everyone I want to change Orchard admin dashboard but I could not to do that. I've added this code in a .CS file public class AdminOverride : IThemeSelector { public ThemeSelectorResult GetTheme(RequestContext context) { if (AdminFilter.IsApplied(context)) { return new ThemeSelectorResult { Priority = 111, ThemeName = "NewAdminTheme" }; }
}
and I have added this line to Theme.txt
BaseTheme: TheAdmin
but nothing works for me I'm beginner in Orchard and unfortunately I could not find a tutorial that helps me. Thanks a lot in advance