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


  1. stanleydepassos
    Member

    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.html

    Thanks!

    Posted 12 years ago #
  2. yuniar

    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 #
  3. eleanor
    Member

    Works perfectly, thanks!!

    Posted 12 years ago #

RSS feed for this topic

Reply