This forum is no longer open and is for reading/searching only.
Please use our new MachForm Community Forum instead.
MachForm Community Forums » MachForm 3
limiting review page to filled fields only
Started 12 years ago by stanleydepassos | 3 posts |
-
We are setting up a very long, multi-page form. This will be used by clients to order print copies from a large (over 300 items) selection of documents. We would like to have the review page include ONLY items that have been requested, not every field in the form. Is there a way to do this? Here is a sample page for this form, that includes a small selection of items that will be included:
http://www.windwardgraphics.com/adventorder/adventorder3.htmlThanks!
Posted 12 years ago # -
It is possible through some small modification. Edit your "includes/view-functions.php" search around line 5712 for this code:
$toggle = false; foreach ($entry_details as $data){
exactly below that block of code, add this code:
if(empty($data['value']) || $data['value'] == ' '){ continue; }
MachForm Founder
Posted 12 years ago # -
Works perfectly, thanks!!
Posted 12 years ago #
Reply
You must log in to post.