How to remove breadcrumbs in custom portal my profile page

I’ve successfully removed the breadcrumbs from the portal’s home page, but now I’m wondering how to do the same for the custom portal’s “My Profile” page. Surprisingly, I can’t seem to locate a profile page option in the portal customization settings within the admin panel.

As you can see in the screenshot below:

It’s evident that I’m struggling to find the specific profile page for removing the breadcrumbs. Any guidance or insights from the community would be greatly appreciated!

On this page:

I’ve scoured the settings, but the profile page remains elusive. Your assistance in solving this breadcrumb mystery would be invaluable.

Thank you in advance for your help and expertise!

Hi,

Is there an update?

Hi @team,

is there any update?

Hi balaNagendraKumar,

Are you referring to Home, Knowledge Base, Forums and Tickets?

How did you remove them? Because by removing them from the Header they also disappear from the profile page and from all pages.

As you can see, I removed breadcrumbs from the “submit ticket” page in the below video

Okay, so what I suggest is to go to Layout → Footer and insert a script like this at the end of the page:

<script>
document.addEventListener('DOMContentLoaded', function() {
    const element = document.querySelector('nav[aria-label="breadcrumb"]')
    if (element) {
        element.remove()
    }
})
</script>

By doing this you will remove the breadcrumb from all portal pages.

Hope this helps!

Hi @Mattia_Piparo ,

That’s fantastic to hear—it worked! :tada:

Thank you!

1 Like

This topic was automatically closed 6 days after the last reply. New replies are no longer allowed.