How to disable hiding (ellipsing) of breadcrumbs
Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.
Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Except Fisheye and Crucible
Purpose
To disable the hidden (eclipsing) breadcrumbs trails in Confluence navigation.
Ellipsing enabled

Ellipsing disabled

Solution
This is customization to Confluence and as such is considered a 'use at your risk' operation by Atlassian.
Create a backup of <Confluence install directory>/Confluence/breadcrumbs.vm before enacting the following steps.
Open the velocity template found at <Confluence install directory>/Confluence/breadcrumbs.vm in a text editor
Alter the following line line from
1
2
3
4
5
6
...
#foreach( $breadcrumb in $breadcrumbs )
#if ($ellipsisCrumbs.contains($breadcrumb))
#set ($breadcrumbHidden = true)
...
to the following
1
2
3
4
5
...
#foreach( $breadcrumb in $breadcrumbs )
#if (false)
#set ($breadcrumbHidden = true)
...
Was this helpful?