MyBB Community Forums
minimum length for custom fields - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: 1.8 Support (https://community.mybb.com/forum-175.html)
+--- Forum: General Support (https://community.mybb.com/forum-176.html)
+--- Thread: minimum length for custom fields (/thread-209099.html)



minimum length for custom fields - macetitan - 2017-03-17

I made a custom field, and I need it to be minimum 15 characters, but it's only possible to set  the maximum length, that's really odd, no way to set a minimum length?


[Image: myo4rwF.jpg]

anyone knows this? Smile


RE: minimum length for custom fields - macetitan - 2017-04-05

Still looking for a solution, maybe someones know?
The funny thing is that you can set a maximum lenght, but not a minimum lenght


RE: minimum length for custom fields - metulburr - 2017-04-05

the regular expression field actually gives you unlimited customization.
/[0-9a-zA-Z]{6,}/
This checks for numbers or text of minimum length of 6 characters. You can pretty do much any string checking with regex. Including making sure the user inputs a specific base URL instead of spam for example.