Hi there,
I just did it on my website ;-)
Here we go:
go to /member.php
about line 59 you'll find this:
function getBlockCode_Mailbox () {
$sInboxC = _t('_Inbox');
$sSentC = _t('_Sent');
$sWriteC = _t('_Write');
$sTrashC = _t('_Trash');
$sContactsC = _t('_Contacts');
$sLettersC = _t('_letters');
$sUnreadC = strtolower(_t('_Unread'));
$sUnopenedC = strtolower(_t('_Unopened'));
$sComposeNewLetterC = strtolower(_t('_COMPOSE_H'));
$sFriendsC = strtolower(_t('_Friends'));
$sFavesC = strtolower(_t('_Faves'));
$sContactedC = strtolower(_t('_Contacted'));
1 - You can change the three red words, add them as a new language key from your admin panel and write what you like.
2 - You can comment the lines " // " e remove the word you don't want to show.
If You want remove the whole contacts button from your account page follow this:
in your member.php about line 149 You'll find this:
/*$aContactsKeys = array (
'notify_icon' => $sContactsIcon,
'notify_caption' => '<a href="' . BX_DOL_URL_ROOT . 'communicator.php">' . $sContactsC . '</a>',
'notify_text1' => $sFriendsC . ', ' . $sFavesC . ', ' . $sContactedC,
'notify_text1_class' => 'smallShortInfoUnit',
'bx_if:allow_2nd_line' => array(
'condition' => false,
'content' => array()
)
);
$sContacts = $GLOBALS['oSysTemplate']->parseHtmlByName('member_mail_notify_box.html', $aContactsKeys);*/
$sInboxClick = "location.href='" . BX_DOL_URL_ROOT . 'mail.php?mode=inbox' . "'";
$sInboxBlock = $GLOBALS['oFunctions']->genNotifyMessage($sInbox, 'none', true, $sInboxClick);
$sOutboxClick = "location.href='" . BX_DOL_URL_ROOT . 'mail.php?mode=outbox' . "'";
$sSentBlock = $GLOBALS['oFunctions']->genNotifyMessage($sSent, 'none', true, $sOutboxClick);
$sComposeClick = "location.href='" . BX_DOL_URL_ROOT . 'mail.php?mode=compose' . "'";
$sWriteBlock = $GLOBALS['oFunctions']->genNotifyMessage($sWrite, 'none', true, $sComposeClick);
$sTrashClick = "location.href='" . BX_DOL_URL_ROOT . 'mail.php?mode=trash' . "'";
$sTrashBlock = $GLOBALS['oFunctions']->genNotifyMessage($sTrash, 'none', true, $sTrashClick);
//$sContactsClick = "location.href='" . BX_DOL_URL_ROOT . 'communicator.php' . "'";
//$sContactsBlock = $GLOBALS['oFunctions']->genNotifyMessage($sContacts, 'none', true, $sContactsClick);
Just comment the red lines as I did ;-)
Take care