I have created a custom section for the backoffice in my Umbraco 7 site. (Followed the receipe in this article). Now I want to change its name and icon, but this doesn't seem to happen.
I have modified the Umbraco.Web.Trees.Tree and PluginController attributes in my Controller class, the Application attribute in my IApplication derived class and the key alias under
Has anyone seen this problem and knows how to get these changes to apply in the backoffice?
Thanks Tim! I found it in the applications.config file. Once I removed my section from there, the change sticked and the applications.config was updated!
Unable to remove custom section in backoffice
I have created a custom section for the backoffice in my Umbraco 7 site. (Followed the receipe in this article). Now I want to change its name and icon, but this doesn't seem to happen.
I have modified the Umbraco.Web.Trees.Tree and PluginController attributes in my Controller class, the Application attribute in my IApplication derived class and the key alias under
Has anyone seen this problem and knows how to get these changes to apply in the backoffice?
Comment author was deleted
Try removing the entry from the /config/sections.config
Thanks Tim! I found it in the applications.config file. Once I removed my section from there, the change sticked and the applications.config was updated!
Comment author was deleted
ah yes applications.config not sections.config :) great!
How to remove it by code like we adding by code:
public class CustomApplication :IApplication {
}
is working on a reply...