Removing Action Buttons

Can anyone show me how to remove some of the Action Buttons that are normally displayed in the block on the left side please?

I want to restrict access of certain actions.

V7.0.9

Quote · 24 Mar 2012

Option
A. http://www.boonex.com/m/actions-manager

Option
B.  sys_objects_actions    (DB.)

Quote · 24 Mar 2012

Thank you so much.

Do you know if they ever fixed the bug with the "Broadcast message" Action Button? Cause you cannot control it from Admin Membership side.

Quote · 24 Mar 2012

i don't know about any "Broadcast message" Action Button   is this available in the default installation ?

Quote · 25 Mar 2012

I thought it was in mods like events etc? Could you check yours as I have a mod from Modzzz for events.

Quote · 25 Mar 2012

you just need to open sys_objects_actions

search for the button you want to remove and delete it. Its so simple :)

so much to do....
Quote · 25 Mar 2012

where do i go to find sys_objects_actions

Everyday is a new beginning.
Quote · 12 Jan 2013

cpanel->phpmyadmin->dolphin database (whatever the name is)->sys_objects_actions

contact your host if you don't have cpanel and don't know phpmyadmin location.

where do i go to find sys_objects_actions

 or get this http://www.boonex.com/m/actions-manager-premium

so much to do....
Quote · 12 Jan 2013

can you tell me if I can control what membership see's particular action buttons via database ?

DedicatedServer4You.com -- BIGGEST Range of Dedicated Servers at the Lowest Price!
Quote · 12 Jan 2013

 yes, in some cases where there are php code in database otherwise you have to do it in a particular file.

can you tell me if I can control what membership see's particular action buttons via database ?

 

so much to do....
Quote · 12 Jan 2013

OK could you give an example of how this would work please (code etc) ?

thank you for time ;)

 yes, in some cases where there are php code in database otherwise you have to do it in a particular file.

can you tell me if I can control what membership see's particular action buttons via database ?

 

 

DedicatedServer4You.com -- BIGGEST Range of Dedicated Servers at the Lowest Price!
Quote · 12 Jan 2013

In the sys_object_actions table "Eval" column for the profile page mail button.

Suppose i only want to show that button to standard membership than i would do this.

Putting this

$aMem = getMemberMembershipInfo(getLoggedId());
if($aMem['ID'] != '1') return; 

So, it will look like this

$aMem = getMemberMembershipInfo(getLoggedId());
if($aMem['ID'] != '2') return;
if ({ID} == {member_id}) return;
return _t('{cpt_send_letter}'); 

I didn't tested this but i suppose it should work.

so much to do....
Quote · 12 Jan 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.