Step 1:
You need to add a new rule to the file wp-content/plugins/user-meta/assets/js/jquery/validationEngine-en.js
I have 2 custom validators on one input field, one does a regex validation, another one calls a custom function.
In case of regex the addition looks like this (you add it the same way as “min”, “max”, “required”, “minSize” and other existing rules are defined in file):
Regex rule:
"onlyPersonnummer": {
"regex": /^\d{6}\-\d{4}$/,
"alertText": "* Format should be YYMMDD-NNNN"
},
Custom function rule:
"validate2fields": {
"alertText": "* Personnummer is not correct."
}
Note that the custom function rule contains only text to be shown on error.
Step 2:
Write your custom validation function, place it in wp-content/plugins/user-meta/assets/js/user-meta.js
Here’s a function skeleton:
function validatePersonalNumber(field, rules, i, options) {
input = field.val();
// on ERROR return options.allrules.validate2fields.alertText
// on success return;
}
Step 3:
Make your fields use these validators:
Edit: wp-content/plugins/user-meta/views/pro/generateField.php
A lot of elseifs there, you need to insert a similar looking code where needed.
In my case I have a custom field with meta key ‘personnummer’ so here is how it looks:
custom[onlyPersonnummer] causes regex check against the regex defined in wp-content/plugins/user-meta/assets/js/jquery/validationEngine-en.js (Step 1).
funcCall[validatePersonalNumber] calls a function “validatePersonalNumber” defined in Step 2.
That’s it. Hope it helps.
This reply was modified 11 years, 6 months ago by karbon.
This website uses cookies to improve your experience. We'll assume you're ok with this, but you can opt-out if you wish.AcceptRead More
Privacy & Cookies Policy
Privacy Overview
This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary cookies are absolutely essential for the website to function properly. This category only includes cookies that ensures basic functionalities and security features of the website. These cookies do not store any personal information.
Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website.