Is there a way to put a letter/word count limit in a field, but not make the actual numbers visible?

  • indiecade_forms
    Asked on February 5, 2021 at 4:23 PM

    I want to put constraints on certain text fields, but don't want the submitters to see 0/800 or whatever it is at the bottom of the field.

  • Elton Support Team Lead
    Replied on February 5, 2021 at 8:13 PM

    That's possible using the Long Text field, then under its OPTIONS you can enable Entry Limits and configure it according to your preference.

    Here's a visual guide:

    02062021 NPx3uPxyak Screenshot 10

    Then you can inject this CSS code into your form if you want to hide the counter shown under the field.

    .form-textarea-limit-indicator {
      display: none;
    }

    Guide: How to Inject Custom CSS Codes