
Originally Posted by
##########################
really what I am trying to do is remove the bredacrumbnav from the main page, by setting it to display none.
To simply remove the breadcrumb from the home page, you could use the stylesheet, or you could simply add another condition in the PHP code of tpl_main_page for your custom template
/includes/templates/YOURTEMPLATE/common/tpl_main_page.php
Code:
<!-- bof breadcrumb -->
<?php if (DEFINE_BREADCRUMB_STATUS == '1') { ?>
<div id="navBreadCrumb"><?php echo $breadcrumb->trail(BREAD_CRUMBS_SEPARATOR); ?></div>
<?php } ?>
<!-- eof breadcrumb -->
Change the line with the IF statement to this:
Code:
<?php if (DEFINE_BREADCRUMB_STATUS == '1' && !$this_is_home_page) { ?>