Does anyone know how to easily hide/remove the Account/Customer panel (see image) in the Opportunity Page?
Like
Hi Rob,
I think the simplest way to do that is to use CSS
If you look at the code Source the Div id is "ClientProfile"
So you can add a CSS file to your opportunity page:
And you create a CSS file in which you add a display none for the id:
Hi Rob,
I think the simplest way to do that is to use CSS
If you look at the code Source the Div id is "ClientProfile"
So you can add a CSS file to your opportunity page:
And you create a CSS file in which you add a display none for the id:
LÉZORAY Nicolas,
Hi Nicolas
Just to follow up on this if I wanted to remove the 'Actions' drop down from this page also would it be something similar. Thanks
Hello Robert !
Yes like this in the Oppotunity CSS file :
#OpportunitySectionV2SeparateModeActionsButtonButton-wrapperEl { display: none; }
LÉZORAY Nicolas,
I did this in the OrderPageV2 with the code above but just replaced the page
#OrderPageV2SeparateModeActionsButtonButton-wrapperEl {
display: none;
}
But this did not work. Does the button in this page have a different name?
thanks
LÉZORAY Nicolas,
Further to above your solution on the section page works great but i cannot get it to work on the record page (OrderPageV2). Tried changing the button name but no joy. Any thoughts Nicolas?