Configuration

Layout/Design/Theme

Q: How can I change the design (colors, header, footer, etc.)?

A: The easiest way is to change TS constants through the constant editor. Watch out for categories starting with PIZPALUE:. Please note that changes are applied to the page where the constant is defined and all sub-pages.

Q: I have to adapt more aspects from the distribution for my project. As well it would be good to use Git in the work flow. What is the best way to do it?

A: For that purpose the extension user_customer could be adjusted and the work progress could be maintained in Git.

Fastmenu

Q: I would like to use a SVG-Icon in the fastmenu. How can I do that?

A: You might define a class for the icon to be rendered and adapt scss/css as needed.

Example TS:

pizpalue.menu.fast.items {
   newItem {
      iconClass = uc-fastmenu-icon1
   }
}

Example CSS:

.uc-fastmenu-icon1 {
   background-image: url(path/to/icon.svg)
}