Foren

How to change theme on all personal pages

Paul Minnaert, geändert vor 13 Jahren.

How to change theme on all personal pages

New Member Beiträge: 4 Beitrittsdatum: 18.06.10 Neueste Beiträge
We are deploying a 6.0.5 portal. A custom theme is made and deployed with a war file. All users default get the classic theme on their personal pages, we set our own theme as default in the portal controlpanel settings. How can I make all users get our theme as default? I even tried to change the value in the layoutset for themeid from classic to our new theme, that didn't help. A user can select the custom theme from their page control.



Regards Paul
Eric Touchard, geändert vor 13 Jahren.

RE: How to change theme on all personal pages

New Member Beiträge: 12 Beitrittsdatum: 19.08.10 Neueste Beiträge
I have the same problem and after searching in source for "powered by liferay" i was able to spot that the Welcome page is using the classic theme.

I am not sure, but it might be stored in the database.
Hannu Alamäki, geändert vor 13 Jahren.

RE: How to change theme on all personal pages

New Member Beiträge: 6 Beitrittsdatum: 25.08.10 Neueste Beiträge
I would like to know too. Somebody please answer this.

I just need to change all existing pages to the same theme, so that should be doable with a simple SQL update. Right?
Paul Minnaert, geändert vor 13 Jahren.

RE: How to change theme on all personal pages

New Member Beiträge: 4 Beitrittsdatum: 18.06.10 Neueste Beiträge
I did it with an sql update
Mickaël Manteau, geändert vor 12 Jahren.

RE: How to change theme on all personal pages

New Member Beiträge: 7 Beitrittsdatum: 06.12.11 Neueste Beiträge
Can we have the sql statement please ?
thumbnail
Florence H, geändert vor 10 Jahren.

RE: How to change theme on all personal pages

Junior Member Beiträge: 51 Beitrittsdatum: 03.11.09 Neueste Beiträge
You should try this :
update LayoutSet set themeId = ‘new-theme-id’ where themeId = ‘old-theme-id’;
update Layout set themeId = ‘new-theme-id’ where themeId = ‘old-theme-id’;