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?