Question

Hiding 'Move Down The Process' button

Hi

 

On the section grid does anyone know the name of the below menu button, in order to remove/hide it from view?

Like 0

Like

2 comments

I believe that button is added differently, via code in a mixin. It would be easiest to just hide it with CSS. 

 

To hide for just the Orders section you'd add the CSS like this: 

#OrderSectionV2Container .grid .t-btn-wrapper[data-tag="processEntryPoint"] {
    display: none;
}

You'd add this to the OrderSectionV2. You can see how to add CSS here: https://customerfx.com/article/adding-custom-css-style-sheets-in-bpmonl…

Ryan

thanks Ryan

Show all comments