Fórumok

breadcrumb issue or not

thumbnail
jack tian, módosítva 11 év-val korábban

breadcrumb issue or not

New Member Bejegyzések: 6 Csatlakozás dátuma: 2012.05.08. Legújabb bejegyzések
First time to page, the breadcrumb links is "Liferay-> site-a-local-> Site-a-cms-> Home", and when i click the document and media portlet's home link in this page, the breadcrumb changed to "Liferay-> Site-a-cms-> Home", it missing the site info, is it a bug for the breadcrumb? actually, i want link to "Liferay-> site-a-local-> Site-a-cms-> Home" even click the home or not... any idea?







thanks
Jack
thumbnail
jack tian, módosítva 11 év-val korábban

RE: breadcrumb issue or not

New Member Bejegyzések: 6 Csatlakozás dátuma: 2012.05.08. Legújabb bejegyzések
I also found the #breadcrumbs() In portal_normal.vm velocity template file, where it defined? how to change the breadcrumbs()?
thumbnail
Muzakir Khan, módosítva 11 év-val korábban

RE: breadcrumb issue or not

Regular Member Bejegyzések: 112 Csatlakozás dátuma: 2012.03.15. Legújabb bejegyzések
Jack Tian:
I also found the #breadcrumbs() In portal_normal.vm velocity template file, where it defined? how to change the breadcrumbs()?

Can you be still more clear.. You did not find the #breadcrumb() where it is defined or what??.. if you need to change the look and feel of breadcrumb, then you have to specify your css in custom.css of your theme..
thumbnail
Jack Tian, módosítva 11 év-val korábban

RE: breadcrumb issue or not

New Member Bejegyzések: 6 Csatlakozás dátuma: 2012.05.08. Legújabb bejegyzések
Muzakir Khan:
Jack Tian:
I also found the #breadcrumbs() In portal_normal.vm velocity template file, where it defined? how to change the breadcrumbs()?

Can you be still more clear.. You did not find the #breadcrumb() where it is defined or what??.. if you need to change the look and feel of breadcrumb, then you have to specify your css in custom.css of your theme..


Now i found how the #breadcrumbs() work, i don't want to change the style of breadcrumb, but i think the breadcrumb links was very strange when click the home link in the document and media portlet! For example, In the page, you click the page named 'Site-a-local', the breadcrumb displayed full path, but if you click the Home link in the page, the breadcrumb displayed " Liferay Site-a-cms Home", missing Site-a-local.... Why different?
thumbnail
Jack Tian, módosítva 11 év-val korábban

RE: breadcrumb issue or not

New Member Bejegyzések: 6 Csatlakozás dátuma: 2012.05.08. Legújabb bejegyzések
find the answer: change portal-web\docroot\html\portlet\document_library\view_resources.jsp line78, change showParentGroups to true; will make two breadcrumb display the same value.

Before:

<div class="portal-breadcrumb">
<liferay-ui:breadcrumb showCurrentGroup="<%= layout.isTypeControlPanel() %>" showParentGroups="<%= false %>"
showCurrentPortlet="<%= layout.isTypeControlPanel() %>" showGuestGroup="<%= !layout.isTypeControlPanel() %>"
showLayout="<%= true %>" showPortletBreadcrumb="<%= true %>" />
</div>

After

<div class="portal-breadcrumb">
<liferay-ui:breadcrumb showCurrentGroup="<%= layout.isTypeControlPanel() %>" showParentGroups="<%= true%>"
showCurrentPortlet="<%= layout.isTypeControlPanel() %>" showGuestGroup="<%= !layout.isTypeControlPanel() %>"
showLayout="<%= true %>" showPortletBreadcrumb="<%= true %>" />
</div>