Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have created two Liferay themes by putting records into liferay-look-and-feel.xml like this:

<theme name="My theme" id="myTheme" >
    <root-path>/</root-path>
    <templates-path>${root-path}/templates</templates-path>
    <images-path>${root-path}/images</images-path>
    <template-extension>vm</template-extension>
    <settings>
        <setting key="custom-property" value="customValue" />
    </settings>
</theme>

this works fine, when I choose my theme in liferay admin console, I can read my custom properties in .vm templates. But when I want to display my portlet in third-party pages using its widget url, I always get default theme there and not the one I have chosen for all my portal pages. The value of $theme.getSetting("custom-property") is different in portal_normal.vm and in portal_pop_up.vm(this is used when displaying as widget). Any help on this pls?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.