I am trying to remove the breadcrumb from the front page. I am using the Bartik theme. I have a page–front.tpl.php template file and I tried to removing the following code lines.
<?php if ($logo): ?> <a href="<?php print $front_page; ?>" title="<?php print t('Home'); ?>" rel="home" id="logo"> <img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" /> </a> <?php endif; ?>
<?php if ($breadcrumb): ?> <div id="breadcrumb"><?php print $breadcrumb; ?></div> <?php endif; ?>
I just realized that my front page isn’t picking up the page–front.tpl template. Why would this happen?