Foren

Theme Developement

thumbnail
angu manikandan, geändert vor 11 Jahren.

Theme Developement

Junior Member Beiträge: 72 Beitrittsdatum: 16.07.12 Neueste Beiträge
Hi all,

I am using LR 6.1. We have developed and customized 3 themes which I want the end user will apply according to his choice in his screen. The end user would have all the 3 themes and he will select the one of his choice by clicking button in Theme. Is it possible to achieve in LifeRay?
Oliver Bayer, geändert vor 11 Jahren.

RE: Theme Developement

Liferay Master Beiträge: 894 Beitrittsdatum: 18.02.09 Neueste Beiträge
Hi Angu,

a user with manage pages permission can choose from all deployed themes ootb that means if you haven't changed anything.

Greets Oli
thumbnail
angu manikandan, geändert vor 11 Jahren.

RE: Theme Developement

Junior Member Beiträge: 72 Beitrittsdatum: 16.07.12 Neueste Beiträge
I created one portlet like that i want to place that plortlet in theme level..........i dnt know how to place in theme..................
Oliver Bayer, geändert vor 11 Jahren.

RE: Theme Developement

Liferay Master Beiträge: 894 Beitrittsdatum: 18.02.09 Neueste Beiträge
Hi,

you can use $theme.runtime("<Portlet-ID>") to include a portlet in your theme or layout-template.

HTH Oli
thumbnail
angu manikandan, geändert vor 11 Jahren.

RE: Theme Developement

Junior Member Beiträge: 72 Beitrittsdatum: 16.07.12 Neueste Beiträge
Thanks for Your guidence i got a output...........
thumbnail
Aryan sahu, geändert vor 11 Jahren.

RE: Theme Developement

Junior Member Beiträge: 73 Beitrittsdatum: 24.07.12 Neueste Beiträge
hi you can use $theme.runtime("your portlet id here");

if you want to know the id click on the portlet configuration tab and click on the sharing tab .you will notice something like this

<script src="http://localhost:2020/html/js/liferay/widget.js" type="text/javascript"></script>
<script type="text/javascript">
Liferay.Widget({ url: 'http://localhost:2020/en_GB/widget/web/guest/hookportlet/-/8'});
</script>

here the portlet id is 8 after /hookportlet/- similarly you can find the id of the portlet and use .
thumbnail
angu manikandan, geändert vor 11 Jahren.

RE: Theme Developement

Junior Member Beiträge: 72 Beitrittsdatum: 16.07.12 Neueste Beiträge
Onclick functionalities are not working..........it display in theme bt not working just rendering in same page.........
Bradley Wood, geändert vor 11 Jahren.

RE: Theme Developement