In Dynamicweb CMS you have so-called "Stylesheets" which are used as containers for various page/site related settings: Layout, navigation etc. You cannot by default rename them - but if you are lucky to have access to the SQL database in which your soloution is store you can use these sql queries below to rename your stylesheets:
- Find the information about the excisting stylesheets:
select * from StylesheetStylesheet where StylesheetStylesheetParentID = 0
You will get information like this:
StylesheetStylesheetID [Integer]
StylesheetStylesheetParentID [Integer]
StylesheetStylesheetNodename [String] - To rename a given Stylesheet, use the above information to generate your sql query, for instance:
UPDATE StylesheetStylesheet SET StylesheetStylesheetNodename = 'My new name'WHERE (StylesheetStylesheetID = '4')
No comments:
Post a Comment