Can I eliminate the check-off box in front of the main product that says "Free"?

  • ResumeProducts
    Asked on January 20, 2020 at 6:16 PM
    5. Can I eliminate the check-off box in front of the main product (that says "Free)? If not, it probably shouldn't matter, just checking.
  • David JotForm Support Manager
    Replied on January 20, 2020 at 7:58 PM

    Please inject the following code to eliminate the checkbox and the "Free" word from free products of your formhttps://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes

    /*Code to eliminate checkbox on free products*/

    input[id*="1001"], input[id*="1002"], input[id*="1003"], input[id*="1004"], input[id*="1010"], input[id*="1006"], input[id*="1007"], input[id*="1005"], input[id*="1009"]{

        display:none;

        pointer-events: none;

    }

    label[for*="1001"] .form-product-details, label[for*="1002"] .form-product-details, label[for*="1003"] .form-product-details, label[for*="1004"]  .form-product-details, label[for*="1010"] .form-product-details, label[for*="1006"] .form-product-details, label[for*="1007"] .form-product-details, label[for*="1005"] .form-product-details, label[for*="1009"] .form-product-details{

        display: none !important;

    }

    /*End*/


  • ResumeProducts
    Replied on January 21, 2020 at 6:51 PM

    Perfect. Thanks!