I need to change the deform validation error message
'There was a problem with your submission Errors have been highlighted below'.
How can I customize my own error message or hide this error message?

I need to change the deform validation error message
'There was a problem with your submission Errors have been highlighted below'.
How can I customize my own error message or hide this error message?

You can override any Chameleon template that Deform uses.
To determine which template to override, search the Deform package source code for the string you want to modify, in this case, "There was a problem with your submission". You will find
templates/form.pt.Create a directory in your package's root, say
templates/_deform/, to hold your template overrides.In your Pyramid application, specify where you store your template overrides. Then in your application's
__init__.py:Finally copy the template
form.ptfrom the Deform package to the overrides folder that you created. This template will override the Deform default. Edit its strings as needed.If you use internationalization, you should instead edit the language's translation file, instead of following the above procedure.