- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2023 06:43 AM
Team,
Need to understand how to change the label for the breadcrumb used in one of the page.Is there way to change it without cloning the widget?Also from where does the item list is fetched?
OOTB code:
HTML:
<ul class="nav nav-pills nav-sm">
<li><a ng-href="?id={{portal.homepage_dv}}">${Home}</a></li>
<li><i class="fa fa-chevron-right"></i></li>
<li ng-if="!c.breadcrumbs"><a href>{{page.title}}</a></li>
<li ng-repeat-start="item in c.breadcrumbs">
<a ng-href="{{item.url}}">{{item.label}}</a>
</li>
<li ng-if="!$last" ng-repeat-end>
<i class="fa fa-chevron-right"></i>
</li>
</ul>
Server:
function($scope) {
var c = this;
$scope.$on("sp.update.breadcrumbs", function(e, list) {
c.breadcrumbs = list;
});
}
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2023 06:55 AM
The title configured in portal page is shown in breadcrumb for any portal page. For service catalog pages, it will follow catalog and category names.
Thank you,
Ali

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2023 06:55 AM
The title configured in portal page is shown in breadcrumb for any portal page. For service catalog pages, it will follow catalog and category names.
Thank you,
Ali
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2023 11:04 PM
Hi ,
Need to understand how to change the URL for the breadcrumb used in kb_article_view page.
Where does the item list (item.url) is fetched? thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-04-2025 03:03 PM
Hi @Tina24 , were you able to found how to update or set that variable??
Regards.