Order Form Without Prices

  • richardcsu
    Asked on July 7, 2017 at 5:05 PM

    Hello,

    What is the best way to accomplish having an Order Form that lists product descriptions and a quantity selector but does not include any prices (and does not show price as FREE)?  In other words, an internal customer would come to our form to order event rental supplies but we will not be charging them through the form, but we need to have a check box for the items they want, a description, and a quantity box, but no prices.  Is this possible?

    Thank you!

  • aubreybourke
    Replied on July 7, 2017 at 5:30 PM

    I made a demo for you that does everything you are asking:

    https://form.jotformpro.com/71856360323960

     

    I use a payment order integration. But I hide the "free" label, subtotal, and total with CSS:


    .form-product-details span {
        display : none;
    }

    .form-payment-total {
        display : none;
    }

     

  • richardcsu
    Replied on July 7, 2017 at 5:39 PM

    Excellent!  I see exactly how to do that now.  Thank you!