Foren

How to add the Sitemap in Theme

thumbnail
Gustavo Oliveira, geändert vor 6 Jahren.

How to add the Sitemap in Theme

Junior Member Beiträge: 98 Beitrittsdatum: 23.09.15 Neueste Beiträge
How can I add the sitemap in the Theme like this:

https://dev.liferay.com/pt/develop/tutorials/-/knowledge_base/7-0/embedding-portlets-in-themes-and-layout-templates

Tried a few classes and didnt work. Thanks
thumbnail
Massimo Bevilacqua, geändert vor 6 Jahren.

RE: How to add the Sitemap in Theme

Regular Member Beiträge: 210 Beitrittsdatum: 27.12.16 Neueste Beiträge
I don't know if you need it anymore. But what do you mean with "sitemap"?

Do you need to add a custom portlet to your theme?
thumbnail
Gustavo Oliveira, geändert vor 6 Jahren.

RE: How to add the Sitemap in Theme

Junior Member Beiträge: 98 Beitrittsdatum: 23.09.15 Neueste Beiträge
Massimo Bevilacqua:
I don't know if you need it anymore. But what do you mean with "sitemap"?

Do you need to add a custom portlet to your theme?


I wanted to use the native sitemap portlet, like we use the search one.

We had to create a custom portlet for it, but do you know how to call the native sitemap on a theme?
thumbnail
Manish Yadav, geändert vor 6 Jahren.

RE: How to add the Sitemap in Theme

Expert Beiträge: 493 Beitrittsdatum: 26.05.12 Neueste Beiträge
Try with Below code

$theme.runtime("<portletID>")
thumbnail
Massimo Bevilacqua, geändert vor 6 Jahren.

RE: How to add the Sitemap in Theme

Regular Member Beiträge: 210 Beitrittsdatum: 27.12.16 Neueste Beiträge
To insert your custom portlet to theme you have to add this code inside your theme template (portal_normal.ftl or where do you want):


&lt;@liferay_portlet["runtime"]
                          defaultPreferences="${freeMarkerPortletPreferences}"
                           portletProviderAction=portletProviderAction.VIEW
                          instanceId="c0nT5cTu2"         &lt;---- if your custom portlet has "instanceable= true" this is required                  
                          portletName="com_yourpackage_yourPortletName" /&gt;


to see your portlet name try to insert it in a page as a normal application and then from Look and feel -> Advanced styling
you will find the portlet id:
This is the one from Web content display:
Portlet ID: #portlet_com_liferay_journal_content_web_portlet_JournalContentPortlet_INSTANCE_QMvMqU3Ap7VG
in portlet name you have to insert just
portletName="com_liferay_journal_content_web_portlet_JournalContentPortlet"
with no "portlet" and "Instance".

I followed this: embedding-portlets-in-themes
Lee Jordan, geändert vor 4 Jahren.

RE: How to add the Sitemap in Theme

Expert Beiträge: 449 Beitrittsdatum: 26.05.15 Neueste Beiträge
How would we configure the sitemap portlet to show pages that were hidden from navigation, programatically in theme? I'm trying to put a band aid on 7.2 lacking a navigation menu in the product menu.