How to remove the word "Free" in product's sub-label?

  • txforesttrail
    Asked on January 23, 2018 at 7:15 PM

    Hi, is there any way to remove the "free" after the new subheading?

  • Jed_C
    Replied on January 23, 2018 at 9:08 PM

    Yes, hiding the word "Free" is possible. Just add the css code below and it should hide the word.

    Please note that you will need to get the ID of the word "Free" then replace the value of the highlighted color below.

    #input_1_1008_price, #input_1_1009_price, #input_1_1010_price{

        display: none !important;

    }

    Just to give you an example, in this form http://www.jotformpro.com/form/80225274328959, the ID's of the word "Free" beside "Ad Sizes" and "Text listing" are input_3_1003_price and input_3_1004_price so the CSS code would be something like:

    #input_3_1003_price, #input_3_1004_price{

        display: none !important;

    }

    Please refer to our guide here https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes on how to inject CSS into your form. Let us know if you have any questions or if you need further assistance.

    I've also made a sample video for you to follow on how you can get the field ID's. Please check my video here https://screencast-o-matic.com/watch/cFVZnhoZ0x.

    Let us know if you have any questions.