**  These options were added to V2.4.6.  These new classes are added at submit.  They will not affect forms generated before V2.4.6, only forms created/submitted after the upgrade to V2.4.6


This document will be divided by the Advanced Name and Advanced Address Fields.


Advanced Name Field

All of the sub-name labels are not displayed - Prefix, First, Middle, Last, Suffix will not display.


To have the user enter all the fields, but only partially display on the backend or PDF Generate, the following example code within Settings / Forms CSS / Custom Submitted CSS can be added:


For example, to hide Prefix, Middle and Suffix (Displaying only First and Last):


.name_middle, .name_prefix, .name_suffix {

  display:none;

}


BeforeAfter



Advanced Address Field

All the sub-labels (address 2, city, state, zip, country) have been hidden.


The address is a span, so it will display on a single line.  Below are examples of how to add CSS to line-breaks within Settings / Forms CSS / Custom Submitted CSS:

Example #1 - when all subfields are chosen

.address_line_2, .address_country {
  1.     displayblock;

/* to add comma between city and state */

.address_city::after {

    content: ",";

}


BeforeAfter

Example #2 - more typically, when address line 2 and Country are NOT chosen


Before


.address_city::before {

    display: block;

    content: "\A";

}

/* to add comma between city and state */

.address_city::after {

    content: ",";

}