我正在嘗試啓用自定義liferay主題。Liferay主題不會啓用?
主題位於webapps/ROOT/html
(基本上是現在經典的副本),我已經修改liferay-look-and-feel.xml
這樣:
<theme id="mytheme" name="mytheme">
<root-path>/html/themes/cloudprint</root-path>
<templates-path>${root-path}/templates</templates-path>
<images-path>${root-path}/images</images-path>
<template-extension>vm</template-extension>
<roles>
<role-name>User</role-name>
</roles>
<color-scheme id="01" name="Blue">
<css-class>blue</css-class>
<color-scheme-images-path>${images-path}/color_schemes/${css-class}</color-scheme-images-path>
</color-scheme>
<color-scheme id="02" name="Green">
<css-class>green</css-class>
</color-scheme>
<color-scheme id="03" name="Orange">
<css-class>orange</css-class>
</color-scheme>
</theme>
在ROOT/WEB-INF/classes
,我有portal-ext.properties
: default.theme.id=mytheme
我也試過default.regular.theme.id
也沒有效果。一切仍然使用classic
主題。
這是怎麼回事?