Message Boards

How to add the Sitemap in Theme

thumbnail
Gustavo Oliveira, modified 6 Years ago.

How to add the Sitemap in Theme

Junior Member Posts: 98 Join Date: 9/23/15 Recent Posts
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, modified 6 Years ago.

RE: How to add the Sitemap in Theme

Regular Member Posts: 210 Join Date: 12/27/16 Recent Posts
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, modified 6 Years ago.

RE: How to add the Sitemap in Theme

Junior Member Posts: 98 Join Date: 9/23/15 Recent Posts
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, modified 6 Years ago.

RE: How to add the Sitemap in Theme

Expert Posts: 493 Join Date: 5/26/12 Recent Posts
Try with Below code

$theme.runtime("<portletID>")
thumbnail
Massimo Bevilacqua, modified 6 Years ago.

RE: How to add the Sitemap in Theme

Regular Member Posts: 210 Join Date: 12/27/16 Recent Posts
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, modified 4 Years ago.

RE: How to add the Sitemap in Theme

Expert Posts: 449 Join Date: 5/26/15 Recent Posts
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.