Skip to main content
Inspiring
September 1, 2014
Answered

Removing breadcrumbs from home page

  • September 1, 2014
  • 1 reply
  • 474 views

RH11 | WebHelp

I apply breadcrumbs through the WebHelp Settings screen when I compile. This method applies them to every topic. However, it don't want to display them on my home page. Does anyone know if it's possible to remove breadcrumbs from an individual page after compilation?

Thanks

Jonathan

This topic has been closed for replies.
Correct answer Willam van Weelden

Sure there is! But it may not be the most user friendly of solutions ;-)

It may be a better idea to use master pages with a breadcrumb placeholder. Then simply assign another master page (without bread crumb placeholder) to the start page.

If you want to remove the auto inserted breadcrumbs, open the file and look for the 3 lines starting with:

document.write("<p style

AddMasterBreadCrumbs("

document.write("

Simply remove these 3 lines or comment them out. (By placing // in front of them.)

The exact content on these lines depend on the page you're on and the styling you've provided.

Kind regards,

Willam

1 reply

Willam van Weelden
Willam van WeeldenCorrect answer
Inspiring
September 1, 2014

Sure there is! But it may not be the most user friendly of solutions ;-)

It may be a better idea to use master pages with a breadcrumb placeholder. Then simply assign another master page (without bread crumb placeholder) to the start page.

If you want to remove the auto inserted breadcrumbs, open the file and look for the 3 lines starting with:

document.write("<p style

AddMasterBreadCrumbs("

document.write("

Simply remove these 3 lines or comment them out. (By placing // in front of them.)

The exact content on these lines depend on the page you're on and the styling you've provided.

Kind regards,

Willam

Jop_SmithAuthor
Inspiring
September 3, 2014

Thanks Willam, both your suggestions work perfectly.