Product List without pricing?

  • Homzie
    Asked on February 18, 2021 at 6:38 AM

    I have design packages that have a set number of what I call "touches" for each package. I'm wanting to create a form to help clients decide which package is right for them, based on the quantity of "touches" they need. As suggested, I'm using the product list tool, but need to hide the price and total as those aren't relevant since the price is fixed. I'd also like for the client to be able to see the total quantity selected rather than the price. What's the best way to go about doing this?

    Jotform Thread 2907078 Screenshot
  • Safak JotForm Developer
    Replied on February 18, 2021 at 8:44 AM

    Hello Homzie,

    You should inject custom CSS to hide the price and total fields.

    Inject to custom CSS;

    1. Click the Brush Icon Button and open Form Designer.1613653668 602e66a4ca83c 1 Screenshot 10
    2. Click the Styles tab. You should write your custom CSS codes Inject Custom CSS field.1613653754 602e66fadc8db 2 Screenshot 21

    I clone your form and write custom CSS codes to hide price and total fields. You can use this CSS codes to hide price and total fields.

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

    .form-line .payment_footer .total_area {
      display: none;
    }

    Also https://www.jotform.com/help/117-how-to-inject-custom-css-codes;


    For the show total selected quantity, you should use Form Calculation Widget. You should all products price update to 1 USD and add product list field to Form Calculation Widget.

    1613655200 602e6ca0b0ae8 3 Screenshot 32

    Also https://www.jotform.com/help/259-how-to-perform-form-calculation-using-a-widget

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