How to remove "get email" from action boxes

How to remove "get email" from action boxes in Dolphin 7.0.2?

Quote · 12 Jul 2010

UPDATE `sys_objects_actions`= 'return\;' WHERE `Icon` = 'action_email.png';

You are welcome.

Quote · 13 Jul 2010

i tried running that, it went successful but it still did not remove the get email feature.. is it because i deleted get email from the lang key?

Quote · 29 Sep 2010

Don`t forget to remove cache file (sys_objects_actions.inc)

Quote · 29 Sep 2010

I was also trying this but I went into DB and I cant seem to locate this..I tried deleteing something but it didnt work....any help with 7.0.3

Quote · 9 Nov 2010

Has anyone tried this yet?

Admin->Settings->Advanced Settings->Profiles and checking the box for Anonymous mode (no contact information):

Save.

https://www.deanbassett.com
Quote · 9 Nov 2010

thanks deano!! this information helps me a lot!! best regards!

--- call me asa! ;-)
Quote · 27 Jul 2011

step 1 - templates/base/scripts/BxBaseProfilesView.php - find (around line 435)

  if(isMember()) {
            $p_arr['cpt_edit'] = _t('_EditProfile');
            $p_arr['cpt_send_letter'] = _t('_SendLetter');
            $p_arr['cpt_fave'] = '';
            $p_arr['cpt_remove_fave'] = '';
            $p_arr['cpt_befriend'] = _t('_Befriend');
            $p_arr['cpt_remove_friend'] = _t('_Remove friend');
            $p_arr['cpt_get_mail'] = '';
            $p_arr['cpt_share'] = _t('_Share');
            $p_arr['cpt_report'] = _t('_Report Spam');
            $p_arr['cpt_block'] = '';
            $p_arr['cpt_unblock'] = '';
        } else {
            $p_arr['cpt_edit'] = '';
            $p_arr['cpt_send_letter'] = '';
            $p_arr['cpt_fave'] = '';
            $p_arr['cpt_remove_fave'] = '';
            $p_arr['cpt_befriend'] = '';
            $p_arr['cpt_remove_friend'] = '';
            $p_arr['cpt_get_mail'] = '';
            $p_arr['cpt_share'] = '';
            $p_arr['cpt_report'] = '';
            $p_arr['cpt_block'] = '';
            $p_arr['cpt_unblock'] = '';
        }

top section is what members see, bottom is what non members see

if you want to hide a btton, then add '' in place of the _t('_Whatever')

if you want to add a line then copy one of the already existing buttons and just change the name, again, remember top section and bottom section should be identical except for after the =.

Step 2 - Repeat step one one the short_profile_info.php page and BxBaseMailBox.php (this page only has one section for members only) - check the variable though cause they are different on each page.

Step 3 - Make sure to add a language key for each new button you create.

caredesign.net
Quote · 1 Feb 2013
 
 
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.