- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-22-2020 09:27 PM
Hi All,
I want to redirect user to a custom page whenever a they click on the breadcrumb link. For example, if you see the image below, its redirect user to sc_category page but I want to change that page to custom_sc_category page which is a clone of sc_category page.
I tried to clone breadcrumb widget but I do not see any code that specifies the page.
I have actually cloned the sc_category page but not sure which part of code to update to redirect the user.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-24-2020 08:57 AM
Hey Geeky,
For that you have to clone the Breadcrumb widget & change a line of code which as follow:
<span><a ng-href="?id={{portal.homepage_dv}}">${Home}</a>
The above code is the OOTB Breadcrumb code line number 3
You have to change this into
<span><a ng-href="?id=your_page">Previous Page </a>
Here is a link community link where I have explain this in detail you can look into it.
If the above code helps then please mark my answer Correct and Helpful.
Thanks and Regards:
Siddhnath Pandey
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-23-2020 06:11 AM
Hi Geeky,
thanks for the reply, let me just dig in and see if I can find a solution for this.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-24-2020 08:57 AM
Hey Geeky,
For that you have to clone the Breadcrumb widget & change a line of code which as follow:
<span><a ng-href="?id={{portal.homepage_dv}}">${Home}</a>
The above code is the OOTB Breadcrumb code line number 3
You have to change this into
<span><a ng-href="?id=your_page">Previous Page </a>
Here is a link community link where I have explain this in detail you can look into it.
If the above code helps then please mark my answer Correct and Helpful.
Thanks and Regards:
Siddhnath Pandey