cancel
Showing results for 
Search instead for 
Did you mean: 

How to remove share button from My Inbox 2.0 Fiori App

0 Kudos
2,310

Hi All,

Could you please help me in finding a way to remove the send an email button from My Inbox 2.0 Fiori App.

View Entire Topic
vincent-choupaut
Discoverer

Hi,

if you extend the app, you can use the extHookChangeFooterButtons in order to remove it. Check this sample code:

extHookChangeFooterButtons: function(objHdrFtr) {

if (objHdrFtr.oEmailSettings !== "undefined") {

objHdrFtr.oJamOptions = null;

objHdrFtr.oEmailSettings = null;

}

return objHdrFtr;

}

martin1997
Explorer
0 Kudos

Thank you so much!
Way better than changing the WHOLE THEME for just hiding a simple button.
Your post deserves way more attention.