In this case the breadcrumb for that page would look like: "Home >> Books >> Pages >> New Page".
If you wish to eliminate the pathway entirely, edit your template html (index) file. Usually it will look like this:
If you wish to eliminate it on a specific page, such as just the home page, you can modify the template in this way:
New line:if($option != "" && $option != "com_frontpage")
New line:{
New line:?>
Existing:
Existing:
Existing:
New line:}
New line:?>
Understanding: The first line says that if the option in the url does not equal com_frontpage (!="com_frontpage") display the pathway. In php ! means not.