hide join link in breadcrumbs

when not logged in. i can't find the page where this link is located.

i'm tired
Quote · 3 May 2010

anyone know how to do this?

i'm tired
Quote · 3 May 2010

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.

https://www.deanbassett.com
Quote · 3 May 2010

much appreciated deano. Smile

i'm tired
Quote · 3 May 2010
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.