• Resolved briannie

    (@briannie)


    Thank you for the forms – they’re great. I’ve limited the text area to 50 words but would like to hide the text that reads “1 of 50 max words.”

    Can you assist with a snippet to do this please?

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Ethan Choi

    (@ethanchoi)

    Hi @briannie,

    You can do what you’ve described by using some custom CSS:

    .wpforms-field-limit-text {
        display: none !important;
    }
    

    And in case it helps, here’s a tutorial from WPBeginner on how to add custom CSS like this to your site.

    Hope this helps ??

    Thread Starter briannie

    (@briannie)

    Ethan
    I did try that snippet before writing to you but it also removes the first and last name boxes as well as the “max words” text. Can you advise again on this please?

    • This reply was modified 5 years, 3 months ago by briannie.
    Plugin Support Ethan Choi

    (@ethanchoi)

    Hi @briannie,

    Sorry about that. To hide the ‘..max words’ text for the specific form on your site, please try this instead:

    #wpforms-field-limit-text-75-2 {
        display: none !important;
    }
    

    Hope this helps ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Hiding “Max Words” text’ is closed to new replies.