How to remove "get email" from action boxes in Dolphin 7.0.2?
How to remove "get email" from action boxes in Dolphin 7.0.2? |
UPDATE `sys_objects_actions`= 'return\;' WHERE `Icon` = 'action_email.png'; You are welcome. |
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? |
Don`t forget to remove cache file (sys_objects_actions.inc) |
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 |
Has anyone tried this yet? https://www.deanbassett.com |
thanks deano!! this information helps me a lot!! best regards! --- call me asa! ;-) |
step 1 - templates/base/scripts/BxBaseProfilesView.php - find (around line 435) if(isMember()) { 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 |