Controllare se una email esiste in Contact Form 7
Contact Form 7 è il plugin più usato in Wordpress per la creazione di form.
Anche se primo acchitto non sembra, è molto flessibile e customizzabile.
Quello che vediamo in questo articolo è come bloccare l'invio del form se l'email già esiste.
In sostanza se l'email è già stata usata.
Questo il codice PHP da mettere nel functions.php:
add_filter('wpcf7_validate_email*', 'custom_email_confirmation_validation_filter', 20, 2);
function custom_email_confirmation_validation_filter($result, $tag) {
if ('your-email' == $tag->name) {
$your_email = isset($_POST['your-email']) ? trim($_POST['your-email']) : '';
global $wpdb;
$entry = $wpdb->get_results("SELECT * FROM zzx_cf7_vdata_entry WHERE name LIKE 'your-email' AND value = '$your_email'");
if (!empty($entry)) {
$result->invalidate($tag, "Hai già inviato una richiesta!");
}
}
Ci sono un pò di note:
- zzx_ è il prefisso delle tabelle di questa installazione di Wordpress; voi dovete metterci il vostro
- questo codice prende in considerazione tutti i form; se ne avete più di uno, e volete fare il controllo solo uno/qualcuno, dovete controllare da quale form arriva la richiesta
- il messaggio custom non funziona, nel senso che viene preso quello impostato nel form; sicuramente c'è qualche modifica da fare, ma a me non interessa al momento
- your-email è il campo email messo nel form; voi sostituitelo col il vostro se è diverso
Enjoy!
php wordpress contact form 7 wpcf7_validate_email
2 Commenti
Hi, My name is Ravi, owner of Webomaze Australia. You have finally found an SEO Company that GETS RESULTS. The proof is my 24,800+ reviews out of which 98.6% are 5-STAR REVIEWS. I recently grew my client’s organic search traffic with high google search ranking by 166% in 4 months. We’re an SEO Company with a difference.Our focus is Customer Delight. And we do everything to make it a great experience of working with us. We are in touch with you at every stage of the project. Even after we deliver the project, I will support you with any query you have. Contact me today and get a FREE SEO AUDIT for your website Click here to start ====> http://tinyurl.com/yycmkjf6
27/10/2024Hi, Looking for someone to help you in local ranking ? Your business is not coming in top of google results page . I am Local SEO expert from 5 years and now i am here to help you! With the expertise and work drive of my team, we will get you the best results possible Check my 5 stars Fiverr page now https://tinyurl.com/3fxa3xw3
25/10/2024