Versari
Forum Replies Created
-
wordpress theme or cf7 default form theme?
Forum: Plugins
In reply to: [Contact Form 7] Hide success message after X secondsI followed this tutorial and I found my solution:
https://www.asapchange.com/hide-contact-form-7-after-successful-send/
But if I retry to open the popup (with the contact form inside) nothing shows up… What can I do to fix it?
Thanks in advance to everybody!
[ No bumping please. ]
Forum: Plugins
In reply to: [Contact Form 7] Hide success message after X secondsDo you think is there a way after clicking Submit to only show the success message and then popup disappears instead of all the fields + success message after them?
Forum: Plugins
In reply to: [Contact Form 7] Hide success message after X secondsIt worked!! Thank you very much Ov4rfly!
Forum: Plugins
In reply to: [Contact Form 7] Hide success message after X secondsMy contact form is inside an easy fancybox Popup. I’d like to auto-close popup after X seconds.
I put this code inside Additional Settings and it works
on_sent_ok: "$.fancybox.close();"
but how can I set the time/countdown?
Forum: Plugins
In reply to: [Contact Form 7] Hide success message after X secondsRESOLVED.
Just place this code in your footer:
<script> (function($) { $(document).ajaxComplete(function() { setTimeout( function() { $('.wpcf7-mail-sent-ok').slideUp('slow'); }, 2000); }); })(jQuery); </script>
Forum: Plugins
In reply to: [Contact Form DB] Form to Database in one rowI can’t fully understand your previous post, can you gently tell me full steps?
Sorry for the inconvenience Michael.
[ No bumping please. ]
Forum: Plugins
In reply to: [Contact Form DB] Form to Database in one rowCan you gently post here a simple template/example so I can start with it?
Thanks in advance
Forum: Plugins
In reply to: [Contact Form DB] Form to Database in one rowThe View I created:
SELECT
submit_time
AS ‘Submitted’,
max(if(field_name
=’nome’,field_value
, null )) AS ‘nome’,
max(if(field_name
=’indirizzo’,field_value
, null )) AS ‘indirizzo’,
max(if(field_name
=’cap’,field_value
, null )) AS ‘cap’,
max(if(field_name
=’provincia’,field_value
, null )) AS ‘provincia’,
max(if(field_name
=’email’,field_value
, null )) AS ’email’,
max(if(field_name
=’telefono’,field_value
, null )) AS ‘telefono’,
max(if(field_name
=’messaggio’,field_value
, null )) AS ‘messaggio’,
max(if(field_name
=’privacy’,field_value
, null )) AS ‘privacy’,
max(if(field_name
=’tipo’,field_value
, null )) AS ‘tipo’,
max(if(field_name
=’Submitted Login’,field_value
, null )) AS ‘Submitted Login’,
max(if(field_name
=’Submitted From’,field_value
, null )) AS ‘Submitted From’,
GROUP_CONCAT(if(file
is null or length(file
) = 0, null,field_name
)) AS ‘fields_with_file’
FROMwp_cf7dbplugin_submits
WHEREform_name
= ‘Contact1’
GROUP BYsubmit_time
ORDER BYsubmit_time
DESC
LIMIT 0,100I’d like to save forms on the db like this view.
Forum: Plugins
In reply to: [Contact Form DB] Form to Database in one rowI already created a View, but I’d like to save form submissions in a different way as it saves right now.
I’d like to create one row per contact form with field names as columns
Forum: Plugins
In reply to: [Contact Form DB] Form to Database in one rowIt doesn’t integrate Paypal.
There are two different types of Contact Form.The first type has these fields:
[text* nome watermark "Nome e Cognome"] [text* indirizzo watermark "Indirizzo"] [text* cap watermark "CAP"] [text* provincia watermark "Provincia"] [email* email watermark "E-mail"] [tel telefono watermark "Telefono"] [textarea messaggio watermark "Messaggio"] Accetta i Termini di servizio [acceptance privacy] [submit "Invia"]</p>
and the second one has these fields:
[text* nome watermark "Nome e Cognome"] [email* email watermark "E-mail"] [tel telefono watermark "Telefono"] Accetta i Termini di servizio [acceptance privacy] [submit "Invia"]</p>
Forum: Plugins
In reply to: [Contact Form DB] Form to Database in one rowI read all the links you give me before asking the question and I tried to make some changes but without success..
Can you gently give me a simple template set for example name, email and date as colums and put all the data in a single row?
Thanks in advance Michael.
[ No bumping please. ]
Forum: Plugins
In reply to: [Contact Form DB] Form to Database in one rowI already tried with this:
https://cfdbplugin.com/?page_id=239but I’d like that plugin automatically saves info like that…
I fixed it myself. Thanks for the reply ??
Forum: Plugins
In reply to: [Firelight Lightbox] Internet Explorer 11 View ProblemEdit: fixed.