Foros de discusión

breadcrumb issue or not

thumbnail
jack tian, modificado hace 11 años.

breadcrumb issue or not

New Member Mensajes: 6 Fecha de incorporación: 8/05/12 Mensajes recientes
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

Archivos adjuntos:

thumbnail
jack tian, modificado hace 11 años.

RE: breadcrumb issue or not

New Member Mensajes: 6 Fecha de incorporación: 8/05/12 Mensajes recientes
I also found the #breadcrumbs() In portal_normal.vm velocity template file, where it defined? how to change the breadcrumbs()?

Archivos adjuntos:

thumbnail
Muzakir Khan, modificado hace 11 años.

RE: breadcrumb issue or not

Regular Member Mensajes: 112 Fecha de incorporación: 15/03/12 Mensajes recientes
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, modificado hace 11 años.

RE: breadcrumb issue or not

New Member Mensajes: 6 Fecha de incorporación: 8/05/12 Mensajes recientes
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?

Archivos adjuntos:

thumbnail
Jack Tian, modificado hace 11 años.

RE: breadcrumb issue or not

New Member Mensajes: 6 Fecha de incorporación: 8/05/12 Mensajes recientes
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>