Skip to main content

Hello

I am setting up a SF community using Skuid pages on api v2. Since customers will be using the page, I want to display a customer friendly error message whenever there is a server error on the SF side. It just has a general ‘Something went wrong’ message with our brand styling. I don’t want them to see something specific like ‘Contact process builder has failed’ that ignores the rest of the styling on the page. I’ve got that component set up and rendering correctly on model save errors.

Is there a way on Spark pages to supress the standard error messages? I know in regular skuid you can do it with css, but spark removed that functionality, and I’m not seeing anything related to error messages in the desgin system.

Is this something that we would be able to do?

Thanks!

We figured this out. The class for error messages is not dynamic like the other components, so it can be targeted with css. To supress the error messages, add a text component to the very top of the page. In ‘advanced’ paste this:

.nx-page-problems-wrapper { display: none !important; }```


Thank you for sharing your solution, Joe!