bence87
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Contact form not submittingFigured out mine. It was caused by a validation function in a different plugin returning not the $result object but something else. Validation should always return the original $result object.
add_filter('wpcf7_validate_tel*', 'wf_cf7_validate_tel', 20, 2); function wf_cf7_validate_tel($result, $tag) { return $result; }Forum: Plugins
In reply to: [Contact Form 7] Contact form not submittingSame here:
Uncaught Error: Call to undefined method WPCF7_FormTag::get_invalid_fields() in /home/***/public_html/wp-content/plugins/contact-form-7/includes/submission.php:275Hi!
I’ve discovered an other issue which belongs to this thread.
If I set a mailto link to a Divi Blurb element’s Link section, then it will be converted to same HTML entities, so when clicked, email address in external email application will look like this: helloin…
I’ve resolved the issue with JS triggering, just wanted to let you know.
Best regards,
BenceHi! Thanks for the reply. You mean the v2.0.2? I could not find anything that would help me.
Thanks