** Caldera Support has ended  - As of March 31, 2022 Caldera Forms is no longer supported. LINK  This includes security updates. Although HIPAA Forms has not changed the Caldera integration, because Caldera is not longer updating security, HIPAA forms does not know if there may be any HIPAA security issues. There is no migration path to Gravity Forms. If you want to remain on HIPAA Forms you will need to recreate your forms in Gravity. However, your old Caldera forms will integrate with any new Gravity forms - they will appear in the same view on the back end of HIPAA Forms.


If you define a Caldera field as hidden, that field will not display on the website but will on the backend by default.  If you have a requirement to NOT display on the backend, you will need to update the CSS (Settings/Forms CSS).

If this hidden field is created with the Custom Class of test_hidden:


The following will need to be added to Settings/Forms Settings CSS in order for the content (%first_name%) to NOT display on the backend.

Hide in generated PDF

.pdf-body .test_hidden {

  display: none;

}

 

Hide in on-line form on backend

.cm-hipaa-submitted-form-fields .test_hidden {

  display: none;

}

 

If you need to have the Label hidden on the backend, the process is similar.

This field is created with Custom Class of display-hidden:

 

The following will need to be added to Settings/Forms Settings CSS in order for the Label  (Hidden) to NOT display on the backend.

Hide in generated PDF

.pdf-body .display-hidden .control-label {

  display: none;

}

 

Hide in on-line form on backend

.cm-hipaa-submitted-form-fields .display-hidden .control-label {

  display: none;

}