hippocms - How can be changed a documenttype layout in Hippo CMS -


i created hippo documenttype using 1 column layout. rendering purposes reorganize given items two-columns layout.

however, no option available change, @ least not using latest hippo cms community version.

i have searched in google , found following information, saying may possible change layout using console, no information how:

http://hippo.2275632.n2.nabble.com/how-to-delete-or-rename-document-types-td7579269.html

i appreciate hints it.

afaik there no documentation on how this: not complicated tedious process. if still can - instance document type not used yet - advise drop , recreate content type. being said, here how works:

  • look project namespace in console: path this: /hippo:namespaces/yourproject/document-type/editor:templates/_default_/root
  • the root nodes defines layout. check out plugin.class: 1 column org.hippoecm.frontend.service.render.listviewplugin , 2 column layout plugin.class org.hippoecm.frontend.editor.layout.twocolumn
  • for every field in document type (that's tedious part) need define if field placed on right or left.
  • this configured on node name of field path, property wicket.id instance have value ${cluster.id}.left.item. means item placed on left side.

your best bet create 2 column example document type , @ configuration , replicate changes in existing field.


Comments