Edit the file templates\base\scripts\BxBaseMenu.php
Got down to the bottom of the file at about line 900
Change This.
else {
$sAdd alt= _t('_Hello member', _t('_sys_breadcrumb_guest'));
$sAddons .= ' <a href="' . $this->sSiteUrl . 'join.php">' . _t('_sys_breadcrumb_join') . '</a>';
$sAddons .= ' <a href="" alt="showPopupLoginForm(); return false;">' . _t('_sys_breadcrumb_login') . '</a>';
}
To This
else {
$sAdd alt= _t('_Hello member', _t('_sys_breadcrumb_guest'));
//$sAddons .= ' <a href="' . $this->sSiteUrl . 'join.php">' . _t('_sys_breadcrumb_join') . '</a>';
$sAddons .= ' <a href="" alt="showPopupLoginForm(); return false;">' . _t('_sys_breadcrumb_login') . '</a>';
}
Commenting out that line will remove the join link.