First update after 20 december 2024 needs extra attention!

Conditional Fields 2.5.5 and later use new folder and file names.
As a result, the plugin will deactivated automatically the first time that you update from version 2.5.4.
Please make sure to activate the plugin manually after the update.

Read more

Summary

Conditional fields Pro includes an extra tag to generate a summary of your form. This is especially useful as a last step summary in multistep forms

Form




    Summary:

    Summary

    Form Code

    <div style="display:flex; flex-wrap:wrap;">
    
      <div style="min-width: 200px; width:40%;">
        <label> Your Name (required) [text* your-name] </label>
        <label> Your Email (required) [email* your-email] </label>
        <label> Subject [text your-subject] </label>
        <label> Your Message [textarea your-message] </label>
      </div>
    
      <div style="width:60%; padding-left: 30px;">
        <strong>Summary:</strong>
        [summary]
      </div>
    
    </div>
    
    [submit "Send"]

    Summary

    <table>
    <tr><td>Your Name</td><td>[your-name]</td></tr>
    <tr><td>Your Email</td><td>[your-email]</td></tr>
    <tr><td>Subject</td><td>[your-subject]</td></tr>
    <tr><td>Your Message</td><td>[your-message]</td></tr>
    </table>