Question

How to remove tag button

Hello,

how would I go about removing this tag button, as well as anything associated with tags on the PortalOrderSectionV2 and PortalOrderPageV2

Thanks

Like 0

Like

2 comments

Hello Tyler,

 

You need to override the logic of the generate method in the TagFilterViewGeneratorV2. This method is responsible for the tag filter generation on the page and to prevent this filter from loading the logic of the method should be overridden according to your business task. Or you can use custom jQuery to remove the filter from the document when the page is loaded.

 

Best regards,

Oscar

Tyler,

It would be easy to just hide it with some CSS. Something like (you'd need to find the right page name for the portal order page):

#OrderSectionContainer .tag-filters-container {
    display: none;
}

https://customerfx.com/article/adding-custom-css-style-sheets-in-bpmonl…

Ryan

Show all comments