Can we remove checkbox from product selection?

  • noelng_joma
    Asked on March 30, 2020 at 11:42 PM

    Hello!

    On the Payment Settings block, there are checkboxes that must be checked in order to be counted towards the order. Is there a way to remove the checkboxes, and just have the products be counted towards the order by their quantity being greater than 0? Users may forget to check off the box and miss ordering an item.

    1585626134Screen Shot 2020 03 31 at 10 Screenshot 10

    Thank you!

    noel.

  • Iris Product Launch Specialist
    Replied on March 31, 2020 at 4:05 AM

    Hi,

    It is possible by injecting a CSS Code to your form. Please copy and paste this code:

    .form-product-item input[type="checkbox"] {

    display: none;

    }

    You can check this guide as it explains where to paste the CSS Code in the 'Form Builder': How to Inject Custom CSS Codes  

    If you need further assistance, please feel free to contact us.


  • joma_form
    Replied on March 31, 2020 at 10:19 PM

    Great, thank you!