well I havent figured out how to add anything but, I have figured how to remove buttons
open up bxbaseprofileview.php in templates/base
find
Code:
//--- Check for member/non-member ---//
if(isMember()) {
$p_arr['cpt_edit'] = _t('_EditProfile');
$p_arr['cpt_send_letter'] = _t('_SendLetter');
$p_arr['cpt_fave'] = _t('_Fave');
$p_arr['cpt_befriend'] = _t('_Befriend');
$p_arr['cpt_greet'] = _t('_Greet');
$p_arr['cpt_get_mail'] = _t('Get Mail');
$p_arr['cpt_share'] = _t('_Share');
$p_arr['cpt_report'] = _t('_Report Spam');
$p_arr['cpt_block'] = _t('_Block');
}
and just find which one you dont want to show up . for example you dont want the get email button
change
$p_arr['cpt_get_mail'] = _t('Get Mail');
to
$p_arr['cpt_get_mail'] = '';
Now I will have to figure out how to add a button.
Bookmarks