How to remove Breadcrumb from Bartik Theme

I have seen many people do not want to show breadcrumb links on their Drupal website. The default Drupal 7 theme Bartik do not have option to show / hide this breadcrumb links.

If you want to remove breadcrumb links from Bartik theme, follow these steps:

Step 1:

Open following file in any text editor of bartik theme.

/templates/page.tpl.php

Step 2:

Find and delete following codes:

<?php if ($breadcrumb): ?>
  <div id="breadcrumb"><?php print $breadcrumb; ?></div>
<?php endif; ?>

Done!!