Change FROM name in mail inbox when sending email through Contact Form 7
Contact form 7 works like shortcodes. Your syntax should be [your-name] <[your-email]> As long as the field your-email is of type email
Contact form 7 works like shortcodes. Your syntax should be [your-name] <[your-email]> As long as the field your-email is of type email
Trying to update repeater field (ACF) dynamically with data from Contact Forms 7
The dropdown menu for contact 7 forms is not responsively with mobile device
I was looking for an option that we can hide the specific option inside the dropdown. But I was able to accomplish this using Conditional Fields plugin. But if anyone knows a way to do this within dropdown options please answer. Thanks! [select translate-from “Translate From” “French” “English” “Hindi” “Spanish”] [group group-584][select translate-to1 “Translate To” … Read more
Contact7 Check Boxes line breaks when submitted
Contact Form 7 is not redirecting the “Thank-You” page with the removal of CSS and JS of plugins
How to access WC()->cart in CF7 hook wpcf7_special_mail_tags
Contact form 7 radio button default:get
Contact form 7 send product PDF after submit
I solved my problem add_filter(‘wpcf7_validate_text’, ‘or_input_validation_filter’, 20, 2); function or_input_validation_filter($result, $tag) { if (‘your-link’ == $tag->name) { $your_link = isset($_POST[‘your-link’]) ? trim($_POST[‘your-link’]) : ”; $your_file = (!empty($_FILES[“file-image”][“name”])) ? trim($_FILES[‘file-image’][‘name’]) : ”; if($your_link == ” && $your_file == ”) { $result->invalidate($tag, “One of the fields has not been completed?”); } } return $result; }