I am trying to hide certain metadata-type fields (name, email address for example) in the form, but once the document is archived into the repository, I WANT those fields to display on the archived version.
I'm using this CSS code to hide them
#q16 {display: none;}
#q17 {display: none;}
Is it possible to hide the fields from the published (public) form, but pass them through into the archived document?
Other attempts: I originally used a collapsed section to hide the fields (it's okay if this info is accidentally stumbled upon) -- but the collapsed section created too much empty space that it made our form require the user to scroll to find the Submit button (our goal is no scrolling to the Submit button).
When I used CSS to hide the fields, the form displayed perfectly... however, those values are not on the archived document.
[If this just isn't possible... I will then need some help formatting the collapsed fields to remove extra padding/spacing so we can obtain our non-scrolling goal. Or... is it possible to move the Submit button to appear earlier in the form?]