slybr
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Recently added hidden field value is not postingTakayuki,
After a recent update I filled in the form and found “clemailsec” field data appeared in the Flamingo.
Thank you so much for your help!
Forum: Plugins
In reply to: [Contact Form 7] Recently added hidden field value is not postingPlease find a link below:
Please let me know if anything else will be needed.
Thank you!
Forum: Plugins
In reply to: [Contact Form 7] Recently added hidden field value is not postingForum: Plugins
In reply to: [Contact Form 7] Duplicated serial number with different dataI think I found the issue.
I have Conditional Fields PRO plugin, with multistep form.
After people filling in the form, instead of refresh the page, they’ve pressed “Previous step” button, which could cause the serial duplication.
So, thank you so much for your help!
Forum: Plugins
In reply to: [Contact Form 7] Duplicated serial number with different dataTakayuki, but how I will reproduce the issue?
I beleive it happened when three people submitted the form almost simultaneously.
So it just happening. In the period of a half year, it happened twice.
Forum: Plugins
In reply to: [Contact Form 7] Duplicated serial number with different dataPlugins:
BackUpWordPress Classic Editor Code Snippets Conditional Fields PRO Contact Form 7 Flamingo Listo PDF Forms Filler for CF7 Redirection WP Mail SMTP Pro WP Rollback XYZ WP Insert Code SnippetTheme:
MH Magazine liteForum: Plugins
In reply to: [Contact Form 7] Duplicated serial number with different dataHello, Takayuki!
Sorry for the delay.
The web site is just a utility pages with the forms.
Here is the link on the test page https://accuref.us/test-form/
Thank you!
Forum: Plugins
In reply to: [Contact Form 7] Show QR code on successful submission@codekraft
Erik,my bad, everything is working as expected.
I’m not using ‘ciao ‘, so I just put ” and removed resp[1].
Now the link is the clickable url link, located right under QR code.
Thank you so much!
Happy upcoming New Year!
- This reply was modified 4 years, 5 months ago by slybr.
Forum: Plugins
In reply to: [Contact Form 7] Show QR code on successful submission@codekraft
Erik, happy holidays to you too!Thank you for your answer!
I’ve tried to implement you code from the ‘final code’ portion. All I’m receiving is the text string where ‘ciao ‘ is. Even if I will put hyperlink in quotes here:
yourTextTwo.innerHTML = '<a href="'+resp[1]+'">after</a>';
I’m getting just a text string “ciao”As I understood, the text for hyperlink shoul go instead of “after” word.
So I just need to put something like
<a href="https://mylink">Description</a>under QR code picture. It will be static link. With the code, QR picture is centered and text appearing on the top line, between CF7 responce and QR code picture.Thank you!
Forum: Plugins
In reply to: [Contact Form 7] Show QR code on successful submission@codekraft
Erik, could you please help me with one more thing.I need to put text and hyperlink under QR code after successful submission.
How can I do that?
Thank you!
Forum: Plugins
In reply to: [Contact Form 7] Show QR code on successful submission@maxxdesign
Sorry for the very late answer.This is really easy with what Erik created.
All you will need beside the code in the form itself – in the very first field named “ Sender’s message was sent successfully ” in the Messages tab, put %% and then the field you would like to appear in QR code.
Forum: Plugins
In reply to: [Contact Form 7] Show QR code on successful submissionErik,
sorry for a late reply, got fever yesterday.
Here is my adoption of your solution:
<div id="qrcode" align="center"></div> <script src="https://cdn.jsdelivr.net/gh/davidshimjs/qrcodejs@master/qrcode.js"></script> <script type="text/javascript"> var wpcf7Elm = document.querySelector( '.wpcf7' ); var qr = document.getElementById("qrcode"); wpcf7Elm.addEventListener( 'wpcf7mailsent', function( event ) { setTimeout(function() { var respElem= document.querySelector( '.wpcf7-response-output' ); var resp = respElem.innerHTML.split("%%"); respElem.innerHTML = resp[0]; qr.innerHTML=''; new QRCode(document.getElementById("qrcode"), { text: resp[1], width: 128, height: 128, colorDark : "#000000", colorLight : "#ffffff", correctLevel : QRCode.CorrectLevel.H }); }, 100); }, false ); wpcf7Elm.addEventListener( 'wpcf7mailfailed', function( event ) { qr.innerHTML=''; }); </script>I aligned, sized QR a bit. Now it is generates QR code, and refreshing it on every submission.
Thank you so much, again, for prompt answer!
Forum: Plugins
In reply to: [Contact Form 7] Show QR code on successful submissionErik, thank you! I will try to test soon.
For now I have issue with successful submissions,
on the failed – I have never saw QR code generated.
Thank you!
Forum: Plugins
In reply to: [Contact Form 7] Show QR code on successful submissionErik,
one more question:
how to make this QR code refresh after the form resubmission, so it will refresh on success, QRs are keep stacking up.
Thank you!
Forum: Plugins
In reply to: [Contact Form 7] Show QR code on successful submission@codekraft
Definitely, without these awesome authors we will not have these wonderful plugins.
Thank you, guys!Erik,
your addition to size of QR code is great! It is more customizable now.
Thank you so much for your help!