How to hide the lables of product sub-category?

  • JIAgroup
    Asked on December 1, 2017 at 6:05 AM

    hello i have a similar issue to some people below. The subheadings thing worked but it's still showing FREE. How do i remove this?

  • Ashwin JotForm Support
    Replied on December 1, 2017 at 9:44 AM

    I have injected the following custom css code in form and that seems to solved your problem:

    input[id*="1003"], input[id*="1066"]{

        display:none;

        pointer-events: none;

    }

    input[id*="1003"] + label > .form-product-details, input[id*="1066"] + label > .form-product-details{

    display:none;

    }

    label[for*="1003"], label[for*="1066"]{

     font-weight: bold;

        text-decoration: underline;

        pointer-events: none;

    }

    span#input_23_1003_price {

        display: none;

    }

    span#input_23_1066_price {

        display: none;

    }

    Please check the screenshot below of your form:

    1512139417freeAmt Screenshot 10

    Hope this helps.

    Do get back to us if you have any questions.