Akoza:
I want to edit the application_top.php file to remove the Home breadcrumb from appearing on the main index page. I am assuming it is there since I am used to osC but am most likely wrong on that assumption.
In v1.3.5 and onward, there's a really easy way to do this:
/includes/templates/YOURTEMPLATE/common/tpl_main_page.php
approx line 94:```
<!-- bof breadcrumb -->
<?php if (DEFINE_BREADCRUMB_STATUS == '1') { ?>
<div id="navBreadCrumb"><?php echo $breadcrumb->trail(BREAD_CRUMBS_SEPARATOR); ?></div>
<?php } ?>
<!-- eof breadcrumb -->
simply add a check for $this_is_home_page like this:```
<!-- bof breadcrumb -->
<?php if (DEFINE_BREADCRUMB_STATUS == '1' && !$this_is_home_page) { ?>
<div id="navBreadCrumb"><?php echo $breadcrumb->trail(BREAD_CRUMBS_SEPARATOR); ?></div>
<?php } ?>
<!-- eof breadcrumb -->