Can I hide check boxes in the payment widget?

  • lethe1977
    Asked on July 22, 2016 at 6:19 AM

    On my form in the 'Products' section there are 3 Products I have made 'required' and 'set by default' - in other-words, their checkboxes remain checked at all times. Is there a way, therefore, to hide the checkboxes so as not to confuse the user?

     

    Thanks

  • beril JotForm UI Developer
    Replied on July 22, 2016 at 8:05 AM

    Could you inject the CSS code below:

    #input_7_1001, #input_7_1003, #input_7_1002  {

        display : none !important;

    }

    By that way, the checkboxes will not visible on your form.

     

    Here is how it works on my side:

     

    Can I hide check boxes in the payment widget? Image 1 Screenshot 20

    If you have any question or issues, please do not hesitate contacting us. We will be glad to assist you.

  • lethe1977
    Replied on July 22, 2016 at 8:19 AM

    Thank you very much!