Plugin Author
radiok
(@radiok)
You cannot make a field enforce “uniqueness”. I assume by that you mean, user A put in “blah” for a custom field titled “Unique text”. user B could not put “blah” in when they register. That is not possible with this plugin. If you mean something else, please let me know.
Ok because my member have to register with they Own *user member* and all member have unique user member. So if i have user member 9999 i dont want someone else try to register with the same number.
There is no way to set my extra field **user member** as UNIQUE on database? I know all data is saved on wp_usermeta table but im sure there is a way to make my extra field UNIQUE even if i have to create an other table i will do it.
I realy need that.
thanks
Plugin Author
radiok
(@radiok)
The data is not stored in a unique row in the database, so there is no way to use the database’s native unique checks. You will have to role your own code. Alternatively, you could enter all the known member numbers as invitation codes and allow only one user to use each invitation code. This could be problematic if you have thousands of members. Although a SQL statement could be used to import all known member numbers into the invitation code field in the database.