In Purchase Order form I need the price included but the ability to hide it from the customer

  • ktolliver
    Asked on November 6, 2016 at 5:02 PM
    I also do need the price included, but the ability to hide it from the customer
  • Mike
    Replied on November 6, 2016 at 6:09 PM

    This is possible to hide product price by injecting CSS to the form.

    For example, to hide 3rd product you can add the next CSS:

    .form-product-item:nth-of-type(3) .form-product-details {
    display: none;
    }

    In Purchase Order form I need the price included but the ability to hide it from the customer Image 1 Screenshot 20

    Thank you.

  • ktolliver
    Replied on November 8, 2016 at 7:02 AM

    That is perfect, thank you for the assistance.