I am sorry to disappoint you, but unfortunately something like this is not possible with the plugin's built-in features.
It probably can be done with some custom work, but our developers are very busy at the moment, working on some priority tasks and fixing bugs and issues with our plugins, so they won't be having the time for custom work in near future.
But we can recommend these services for customization:
I'll forward it to our development team, so they can take a look.
In the mean-time, you can try modifying that procedure, and applying it in Amelia. At the moment - it's custom work, and as custom it's not included in the provided support for the plugin, so I can't help you with that.
Hello
Is it possible to validate phone and custom field. For example regular expression validation ?
Thanks
Hello zbyneksmetana
I am sorry to disappoint you, but unfortunately something like this is not possible with the plugin's built-in features.
It probably can be done with some custom work, but our developers are very busy at the moment, working on some priority tasks and fixing bugs and issues with our plugins, so they won't be having the time for custom work in near future.
But we can recommend these services for customization:
https://codeable.io/?ref=l1TW1
https://wpkraken.io/?tms-plugins
They do develop such solutions, so can you please send your inquiry to them?
Also, I'll ask you to please add this as a suggestion in the Survey located in my signature.
Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables
For example in popular "Contact Form 7" plugin this is simple procedure.
For example
add_filter( 'wpcf7_validate_text*', 'specific_function', 20, 2 );
function specific_function( $result, $tag ) {
if ( 'text-pesel' == $tag->name ) {
$szkolenia_pesel = isset( $_POST['text-pesel'] ) ? trim( $_POST['text-pesel'] ) : '';
if ( !CheckPESEL($szkolenia_pesel) ) {
$result->invalidate( $tag, "Example of text with Incorect validation" );
}
}
return $result;
}
function CheckPESEL($str)
{
return true;
or return
return false;
}
It would be great if you shared this interface.
Thanks
Hi again zbyneksmetana
Thanks for sharing this with me.
I'll forward it to our development team, so they can take a look.
In the mean-time, you can try modifying that procedure, and applying it in Amelia. At the moment - it's custom work, and as custom it's not included in the provided support for the plugin, so I can't help you with that.
Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables