• Congratulations on the Plugin. It’s really very good! In the field settings options I found the max text length option, however it would be great to have the option to also define the minimum number of characters, because for example, when using a telephone mask and leaving the field as mandatory, without defining the quantity With a minimum number of characters it is possible to send the message, partially filling in the field. Is it possible to set this minimum number of characters?

Viewing 1 replies (of 1 total)
  • Plugin Support Abul Khoyer

    (@hellokhoyer)

    Hello @fan297,

    Currently, there is no option to set minlength. I’m taking this as a feature request. As a temporary solution, you may set the attribute with custom JS like the following,

    let input = document.querySelector("#ff_14_input_text");
    const minLength = 2;
    input.setAttribute("minlength", minLength);

    Hope this helps.
    Thank you.

Viewing 1 replies (of 1 total)
  • The topic ‘MIN text length’ is closed to new replies.