• Resolved zealzy

    (@zealzy)


    Hi!

    I can’t find an option where i can exclude fields out of print form. What is the best way to do this?

Viewing 1 replies (of 1 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @zealzy

    I’m checking the list of non-responded threads. Probably you have found the solution to the question by yourself. However, I’ll try to answer it.

    You can assign a custom class name to the fields you want to exclude from the printed version of the form, for example: no-print

    Note: the class names are assigned to the fields through their attributes “Add CSS Layout Keywords”

    And then, insert an “HTML Content” field in the form with the following piece of code as its content:

    
    <style>
    @media print{.no-print{display: none !important;}}
    </style>
    

    Best regards.

Viewing 1 replies (of 1 total)

The topic ‘How can I exclude fields in printform’ is closed to new replies.