Disable actions botons

I need disable some buttons action in profile :  see images

 

Can help me?

borrarboton.png · 84.1K · 366 views
mensajeopcion.png · 161.8K · 405 views
Quote · 6 May 2014

The easiest way is to buy one of the action managers from the market, Actions Manger Premium from EASE allows one to archive actions and Modzzz has an action manager as well that allows this.  With the archive feature, you can simply disable the action without deleting it from the database.

The other way outside of a module is to edit the database and I don't like mentioning that route unless I know someone won't trash their database.  Anything one works directly on the database they should perform a backup first.

Geeks, making the world a better place
Quote · 6 May 2014

Thank you very much.

I think

"actions manager by modzzz",  are compatible with version 7.1.4

"actions manager premium by ESASE", compatibility not specified

Quote · 6 May 2014

 

Thank you very much.

I think

"actions manager by modzzz",  are compatible with version 7.1.4

"actions manager premium by ESASE", compatibility not specified

I am using ESASE's module with 7.1.4

Geeks, making the world a better place
Quote · 6 May 2014

ok, I see

Quote · 6 May 2014

 

ok, I see

Both modules will do what you need to do; it is a matter of personal choice which vendor you go with.

Geeks, making the world a better place
Quote · 6 May 2014

in templates/base/scripts/BxBaseProfileView.php - look for section similar to this:

if(isMember()) {
            $p_arr['cpt_edit'] = _t('_EditProfile');
            $p_arr['cpt_send_letter'] = _t('_SendLetter');
            $p_arr['cpt_fave'] = _t('_Fave');
            $p_arr['cpt_remove_fave'] = _t('_Remove Fave');
            $p_arr['cpt_befriend'] = _t('_Befriend');
            $p_arr['cpt_remove_friend'] = _t('_Remove friend');
            $p_arr['cpt_get_mail'] = _t('_Get E-mail');
            $p_arr['cpt_share'] = $this->isAllowedShare($this->_aProfile) ? _t('_Share') : '';
            $p_arr['cpt_report'] = _t('_Report Spam');
            $p_arr['cpt_block'] = _t('_Block');
            $p_arr['cpt_unblock'] = _t('_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'] = '';
        }

 

 

change section in blue to this:

$p_arr['cpt_get_mail'] = '';

caredesign.net
Quote · 7 May 2014

Muchas Gracias professorSr

Thank you very much professorSr

Quote · 7 May 2014
 
 
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.