Forum Replies Created
- AuthorPosts
markko
ParticipantHi Ally,
I needed to add “element-wrapper” to that particular style tag and that worked perfectly!
thank you
markko
ParticipantFor anyone else looking the process is listed here
The only problem I have found, is that it doesn’t show a warning message above the field if the captcha has been entered incorrectly on my form, so there’s a problem somewhere.
markko
ParticipantI’ve managed to implement a homegrown captcha using the website here;
https://www.the-art-of-web.com/php/captcha-no-cookie/
Working a treat.
Regards
markko
ParticipantFantastic Ally. Works perfectly. Apologies for not discovering the original problem sooner!
markko
ParticipantApologies. Chrome was stubborn. I needed to Ctrl-F5 to delete the cached js script. It is now working.
On my second question is it possible to keep the form data intact, rather than clearing it when submitted?
- This reply was modified 3 years, 8 months ago by
markko.
markko
ParticipantUpdate: I’ve now moved the recaptcha code to line 111 and I no longer get this error. The latest is that the form does noting when I press submit. All that happens is the button moves over to the left and the form is not submitted or database written to.
markko
ParticipantHi Ally,
Would you be able to give me a quotation to transfer/translate the old process.php to the new one.
markko
ParticipantThank you Ally!
I’ll give this a try at the weekend.
markko
ParticipantHi Ally, many thanks for this!
I also have a Clicky.com conversion code to add as well. This registers a conversion the same time as google.
<script> var clicky_custom = {}; clicky_custom.goal = { name: 'New Site Conversion', revenue: '1' }; </script>
How would I add this to the code you have given below?
$('form.quform').Quform({ successStart: function (response) { if (window.gtag) { gtag('event', 'conversion', { 'send_to': 'AW-CONVERSION_ID/AW-CONVERSION_LABEL', 'value': 1.0, 'currency': 'USD' }); } } });
This is the script loaded elsewhere in the page to call Clicky.com
<script type="text/javascript"> var clicky_site_ids = clicky_site_ids || []; clicky_site_ids.push(10000000); (function() { var s = document.createElement('script'); s.type = 'text/javascript'; s.async = true; s.src = '//static.getclicky.com/js'; ( document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0] ).appendChild( s ); })(); </script> <noscript><p><img alt="Clicky" width="1" height="1" src="//in.getclicky.com/fffffffffns.gif" /></p></noscript>
More info here.
https://clicky.com/help/faq/features/goals/js
Thank you
- This reply was modified 4 years, 10 months ago by
markko. Reason: added detail
- This reply was modified 4 years, 10 months ago by
markko.
- This reply was modified 4 years, 10 months ago by
markko. Reason: clarity
- This reply was modified 4 years, 10 months ago by
markko. Reason: added URL for clicky explanation
- This reply was modified 4 years, 10 months ago by
markko.
markko
ParticipantI can see you may have answers for the wordpress Quform plugin, but I don’t have the permissions to view these…
markko
ParticipantHi Ally,
Thanks for your reply.
I am subscribed to this already but I didn’t get an email about this bug. Have I missed something here?
Regards
markko
ParticipantWe have the exact same error and your .js file modification fixed this for us, thank you.
We only found out about this today unfortunately – so lost some customers who gave up before contacting us.
Is there a mailing list we can subscribe to for this product that will show us of any URGENT upgrades / errors so that we can be ahead of the curve?
Many thanks
- This reply was modified 5 years ago by
markko.
markko
ParticipantThanks for your help Ally!
For others;
Hi
At the top of the page with the form, before any other code, add this:
<?php session_start(); ?>
Regards, Ally
ThemeCatchermarkko
ParticipantI changed the following;
// Send the notification message
$mailer->Priority = 1;
$mailer->Send();
and it now works perfectly – thank you !
- This reply was modified 3 years, 8 months ago by
- AuthorPosts