Above the nodes I have an "Home" link. How to delete it ?

Comments

dbeall’s picture

I would say to go in the theme file, page.tpl and take out
if ($breadcrumb): print $breadcrumb; endif;

or install http://drupal.org/project/custom_breadcrumbs

phicarre’s picture

Thank's.
I have this line in my Theme:

<?php if (!empty($breadcrumb)): print theme('breadcrumb', $breadcrumb); endif; ?> 

That means I could keep the line and put $breadcrumb to empty ?

BUT where is defined $breadcrumb ?

dbeall’s picture

If you change the code, it may not show any breadcrumbs

If you want to keep breadcrumbs, but change them, use custom breadcrumbs to take control of them.
If you give me complete node information, I can help you set up custom breadcrumbs.

dbeall’s picture

sorry, i didn't answer your question. To remove the breadcrumbs, take that line of code out or delete it.
The code line may be a little different depending on the theme.