Nicola Modugno
Forum Replies Created
-
Forum: Plugins
In reply to: [Smart Cookie Kit] Registra i consensi – Records consents@woodypad ho rilasciato un aggiornamento del plugin che permette di memorizzare sul server un log dei consensi: nel cookie memorizzato sul browser e nel log sul server viene inserito un timestamp che permette di effettuare un match tra i due.
Ciao!You are welcome! ??
Why should I contact you via email?
I solved the problem disabling the “Minify HTML Plus” for now.. This post is to consider as an advice for you.Forum: Plugins
In reply to: [Smart Cookie Kit] Registra i consensi – Records consentsSi: il consenso viene registrato.
No: il cookie tecnico è memorizzato sul dispositivo del visitatore, è una informazione che viene inviata al server ad ogni richiesta (ogni pagina che l’utente apre), ma non è una informazione che il server web può recuperare quando vuole.
Spero di rilasciarla presto! ??
Forum: Plugins
In reply to: [Smart Cookie Kit] Registra i consensi – Records consentsBeh.. Col cookie tecnico, a tutti gli effetti il consenso viene registrato!
Infatti, con “tale ‘documentazione’, non è necessario che l’informativa breve sia riproposta alla seconda visita dell’utente sul sito…”!
Mi pare che il funzionamento del plugin sia coerente con ciò che viene riportato dal garante!Una migliorìa però che mi fai venire in mente con quel testo, riguarda la possibilità di modificare il consenso.
Quando ho realizzato il plugin, i metodi menzionati per rimuovere il consenso erano quelli forniti dal browser, infatti nell’informativa bisognava indicare le modalità.
Magari per un prossimo aggiornamento posso prevedere la possibilità per l’utente di gestire il suo consenso tramite un link nel footer o simile.Forum: Reviews
In reply to: [Smart Cookie Kit] Great concept beautifully implemented@diegocanal it’s a really good idea!!
I think that the web could be a better place.. We all should develop with the idea that our visitor had to be helped, not misleaded!Forum: Plugins
In reply to: [Smart Cookie Kit] Registra i consensi – Records consentsCiao woodypad, grazie!
Questo è un aspetto particolare, e ciò che hai riportato è un po’ contrastante:
“Registrazione dei consensi” fa pensare che il proprietario del sito debba mantenere un registro dei consensi ricevuti…
Nella spiegazione di questa caratteristica, però, il garante fa riferimento all’uso di cookie tecnici per i quali non è necessario ricevere un consenso: questo implica che il consenso si può memorizzare in un cookie tecnico sul pc di chi presta il consenso!Riformulo quindi la tua domanda in 2 modi, e rispondo:
1) Il plugin crea un registro di consensi ricevuti? No.
Ritengo che la cosa avrebbe anche poco senso, perchè lo stesso utente potrebbe cambiare linea dati (ADSL, cellulare, rete pubblica) vanificando di fatto la memorizzazione dell’IP di provenienza (non ci sarebbe più un riscontro nel registro!).2) Il plugin memorizza un cookie tecnico per tener traccia del consenso prestato dall’utente? Si.
è proprio grazie a questo cookie che all’utente non viene più mostrato il banner con l’informativa nelle eventuali successive visite al sito.Spero di aver risposto esaurientemente.
Ciao!Forum: Reviews
In reply to: [Smart Cookie Kit] Great concept beautifully implementedDiego I really appreciate your review, and to be honest, it makes me happy and proud of this (first official) plugin!!
Let me know if you think I can improve it!
Thanks to you! ??Forum: Plugins
In reply to: [Smart Cookie Kit] Great concept!Hi Diego! Sorry for the delay… I didn’t received notifications of your comment (and your review).
Thank you for your support and for testing my plugin ??PS: .. and for typos corrections!! ??
I created my own download page requiring your CFDBMimeTypeExtensions.php to specify the mime type.
Thanks again Michael!
Jaccia..
I’m writing a plugin, so that code is part of it.I think you should put that code in the functions.php file too.
Remember that upgrading or changing the template you will lost that funcionality!But… If the nested shortcode would query the DB for the list of items… The outer shortcode what would do?!…
Hi guys…
I know that the original question is a bit different from mine: i need to populate a dropdown list from my own db’s table.In this way I can use all ContactForm7 goodies:
In the cf[text* nome /40] [email* email /90] <select name="provincia">[lista_province]</select>
In a code file
wpcf7_add_shortcode( 'lista_province', 'lista_province_da_db'); function lista_province_da_db ( $atts ) { global $wpdb; $sql = "SELECT p.id_provincia AS valore, p.provincia AS label FROM tab_province AS p ORDER BY p.provincia;"; $ret = ""; $righe = $wpdb->get_results($sql); foreach ( $righe as $riga ) { $ret .= '<option value="' . $riga->valore . '">' . $riga->label . '</option>'; } return $ret; }
Hope this post can help someone!
Forum: Plugins
In reply to: [contact form 7 database] ID for submissionMichael you are great!
To be sure that data are in the db before I assign to users, I still use the wpcf7_before_send_mail, but now thanks to you I can get the submit_time value!
add_action( 'wpcf7_before_send_mail', 'submission_to_user', 10); function submission_to_user ( $f ) { // ... ... $submit_time = $f->submit_time; // ... ... }
Thanks a lot!
Probabily the answer is “shortcode”…
Hope that Michael could save us ??