Is it possible to hide some text elements in the Preview summary at the end? 

  • Sybares
    Asked on April 24, 2019 at 11:38 AM
    Is it possible to hide some (or all the) text elements in the Preview summary at the end? 
  • Girish JotForm Support
    Replied on April 24, 2019 at 1:50 PM

    Are you referring to the Preview form option that appears before you Submit the form?

    Yes, you can hide the fields that you do not want to show in the Preview page. You need to type the exact field labels that you want to hide into the Hidden field section as shown below.

    15561281262404 5 Screenshot 10

    Hope this helps.

  • fvcadmin
    Replied on May 22, 2019 at 2:46 AM

    Text Element seems have no label.  How can I hide Text Element

  • Nik_C
    Replied on May 22, 2019 at 4:10 AM

    You can try hiding the Text elements from the Preview page by using CSS:

    #previewContainer > ul > li:nth-child(45) {

        display: none;

    }

    #previewContainer > ul > li:nth-child(16) {

      display: none;

    }

    Just insert it in custom CSS: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes

    If you need to remove some additional text fields, please let us know.

    Let us know how it worked.

    Thank you!