Many errors like these in the error_log:
Could you please fix this ?
[STDERR] PHP Warning: Undefined array key "max" in /wp-content/plugins/contact-form-7-dynamic-text-extension/contact-form-7-dynamic-text-extension.php on line 483\n
[STDERR] PHP Warning: Undefined array key "minlength" in /wp-content/plugins/contact-form-7-dynamic-text-extension/contact-form-7-dynamic-text-extension.php on line 477\n
[STDERR] PHP Warning: Undefined array key "maxlength" in /wp-content/plugins/contact-form-7-dynamic-text-extension/contact-form-7-dynamic-text-extension.php on line 469\n
[STDERR] PHP Warning: Undefined array key "maxlength" in /wp-content/plugins/contact-form-7-dynamic-text-extension/contact-form-7-dynamic-text-extension.php on line 461\n
]]>However, I can’t see an obvious way to actually add this from the backend. I thought it might be under the custom fields tab but can’t find it there.
Does your plugin allow this?
The plugin allows to set the maximum number of characters (Maxlength), but not the minimum number (Minlength) or the exact number (Pattern).
Is there any way to set this rule?
]]>BUT!
It won’t be working without small correction in plugin file cf7-phone-mask-field.php
String #26
add_filter( ‘wpcf7_validate_mask*’, ‘wpcf7mf_mask_validation_filter’, 10, 2 );
replace with
add_filter( ‘wpcf7_validate_mask’, ‘wpcf7mf_mask_validation_filter’, 10, 2 );
You can then add another custom validation in function “wpcf7mf_mask_validation_filter”
I got a little frustrated trying to make the tags work on regular fields.
]]>Not finding in the documentation and not finding after searching through these support forums.
]]>Here is the code in the form area:
<p>Your Phone Number<br />
[tel* your-tel minlength:10 maxlength:10] </p>
What am I missing? Thank you.
]]>I want to have customers booking appointments (that works great!) but the comment field allows only 499 characters which is for our purpose too few.
How can I increase this number?
I’ve found and increase this number in the databasesetup and 2 bootstrap**.php scripts but still only messages with <499 characters are sent. If messages are longer nothing stored from this box.
You help would be appreciated!
ies Nijman
]]>this is a great plugin!
I noticed that MailChimp cuts off text at 255 characters. So I’d like to limit the text users can write to 255 characters, so they at least know that it won’t be seen.
How would I go about doing this?
]]>