That is the breadcrumb trail. It is showing only "Home" w/o link because that is your current page.
It should be possible to disable the breadcrumbs when you are on the home page. Look in tpl_main_page.php; in the top comments are directions for this.
You could put that test in the breadcrumb section in tpl_main_page.php.Code:* // example to not display right column on main page when Always Show Categories is OFF<br /> * <br /> * if ($current_page_base == 'index' and $cPath == '') { * $flag_disable_right = true; * }
Add " and !($current_page_base == 'index' and $cPath == '')" to the existing test:
This only allows the breadcrumbs to execute when not on the home page.Code:<!-- bof breadcrumb --> <?php if (DEFINE_BREADCRUMB_STATUS == '1' and !($current_page_base == 'index' and $cPath == '')) { ?>



