Foren

How to place company address and phone on each page of the site?

thumbnail
Kravchenko Dmitry, geändert vor 10 Jahren.

How to place company address and phone on each page of the site?

Regular Member Beiträge: 139 Beitrittsdatum: 04.10.10 Neueste Beiträge
What is expected way to place company address on each page of the site? In page footer, for example?

Should I create custom layout, theme or only portlets can know this data?

How to know this data from layout or theme?

Is this true that, from within portlet class an organization addresses can be accessed by calling Organization class method, while organization phones can be accessing only by service call?
Rahul Sharma, geändert vor 10 Jahren.

RE: How to place company address and phone on each page of the site?

Junior Member Beiträge: 59 Beitrittsdatum: 11.01.12 Neueste Beiträge
The theme is the proper place to put your company address.
You can modify portal_normal.vm file in the theme to do the required changes.
thumbnail
Bart Simpson, geändert vor 10 Jahren.

RE: How to place company address and phone on each page of the site?

Liferay Master Beiträge: 522 Beitrittsdatum: 29.08.11 Neueste Beiträge
This kind of information does not change on regular basis, if you have the option you can hard code it into theme rather then retrieving it from the api as the api would make calls on page loads.
There are some different ways / views about putting content in theme as described here https://www.liferay.com/web/raymond.auge/blog/-/blogs/embedding-portlets-in-themes-on-liferay
thumbnail
KK rajput, geändert vor 10 Jahren.

RE: How to place company address and phone on each page of the site?

Expert Beiträge: 266 Beitrittsdatum: 10.04.08 Neueste Beiträge
Hi ,
I think simplest approach is to create a web content and add this web content in footer.vm.

Sample code : In footer.vm
#set($content=$journalContentUtil.getContent($group_id, "$webcontent_Id",null,"$locale",$theme_display));

$content;

Best this you can manage web content on run time as well apply css and js specific to it.

HTH
Kamal
thumbnail
Kravchenko Dmitry, geändert vor 10 Jahren.

RE: How to place company address and phone on each page of the site?

Regular Member Beiträge: 139 Beitrittsdatum: 04.10.10 Neueste Beiträge
I don't understand, what all this database mumbo-jumbo about organizations, communities etc is required for if we should avoid using it???